-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathBUILD
More file actions
37 lines (33 loc) · 812 Bytes
/
BUILD
File metadata and controls
37 lines (33 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# Description: Blaze plugin for various IntelliJ products.
#
load(
"//:build-visibility.bzl",
"BAZEL_PLUGIN_SUBPACKAGES",
"create_plugin_packages_group",
)
licenses(["notice"])
create_plugin_packages_group()
# Changelog file
filegroup(
name = "changelog",
srcs = ["CHANGELOG"],
visibility = BAZEL_PLUGIN_SUBPACKAGES,
)
# CLwB tests, run with a CLion plugin SDK
test_suite(
name = "clwb_tests",
tests = [
"//base:integration_tests",
"//base:integration_tests_kt",
"//base:unit_tests",
"//base:unit_tests_kt",
"//clwb:headless_tests",
"//clwb:integration_tests",
"//clwb:unit_tests",
"//cpp:unit_tests",
"//dart:unit_tests",
"//python:unit_tests",
"//skylark:integration_tests",
],
)