forked from bazelbuild/intellij
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
61 lines (54 loc) · 1.52 KB
/
BUILD
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
load("@rules_java//java:defs.bzl", "java_library")
load(
"//:build-visibility.bzl",
"DEFAULT_TEST_VISIBILITY",
"PLUGIN_PACKAGES_VISIBILITY",
)
licenses(["notice"])
java_library(
name = "shared",
visibility = PLUGIN_PACKAGES_VISIBILITY,
exports = [
"//shared/java/com/google/idea/blaze/common",
"//shared/java/com/google/idea/blaze/exception",
],
)
java_library(
name = "exception",
visibility = PLUGIN_PACKAGES_VISIBILITY,
exports = [
"//shared/java/com/google/idea/blaze/exception",
],
)
java_library(
name = "vcs",
visibility = PLUGIN_PACKAGES_VISIBILITY,
exports = [
"//shared/java/com/google/idea/blaze/common/vcs",
],
)
java_library(
name = "artifact",
visibility = PLUGIN_PACKAGES_VISIBILITY,
exports = [
"//shared/java/com/google/idea/blaze/common/artifact",
],
)
java_library(
name = "proto",
visibility = PLUGIN_PACKAGES_VISIBILITY,
exports = [
"//shared/java/com/google/idea/blaze/common/proto",
],
)
test_suite(
name = "tests",
tests = [
"//shared/javatests/com/google/idea/blaze/common:LabelTest",
"//shared/javatests/com/google/idea/blaze/common:TargetTreeTest",
"//shared/javatests/com/google/idea/blaze/common/artifact:BuildArtifactCacheTest",
"//shared/javatests/com/google/idea/blaze/common/proto:ProtoStringInternerTest",
"//shared/javatests/com/google/idea/blaze/common/vcs:VcsStateTest",
],
visibility = DEFAULT_TEST_VISIBILITY,
)