File tree Expand file tree Collapse file tree 5 files changed +60
-30
lines changed Expand file tree Collapse file tree 5 files changed +60
-30
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,8 @@ java_library(
37
37
runtime_deps = [
38
38
"//dependencies/maven/artifacts/com/google/android:annotations" ,
39
39
"//dependencies/maven/artifacts/com/google/code/gson:gson" ,
40
- "//dependencies/maven/artifacts/com/google/errorprone:error-prone-annotations" ,
40
+ "//dependencies/maven/artifacts/io/opencensus:opencensus-api" ,
41
+ "//dependencies/maven/artifacts/io/opencensus:opencensus-contrib-grpc-metrics" ,
41
42
"//dependencies/maven/artifacts/io/perfmark:perfmark-api" ,
42
43
":grpc-api"
43
44
],
Original file line number Diff line number Diff line change
1
+ java_library (
2
+ name = "opencensus-api" ,
3
+ exports = [
4
+ "//external:jar/io/opencensus/opencensus-api"
5
+ ],
6
+ visibility = [
7
+ "//dependencies/maven/artifacts:__subpackages__"
8
+ ]
9
+ )
10
+
11
+
12
+
13
+ java_library (
14
+ name = "opencensus-contrib-grpc-metrics" ,
15
+ exports = [
16
+ "//external:jar/io/opencensus/opencensus-contrib-grpc-metrics"
17
+ ],
18
+ runtime_deps = [
19
+ ":opencensus-api"
20
+ ],
21
+ visibility = [
22
+ "//dependencies/maven/artifacts:__subpackages__"
23
+ ]
24
+ )
25
+
26
+
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ java_library(
4
4
"//external:jar/io/perfmark/perfmark-api"
5
5
],
6
6
runtime_deps = [
7
- "//dependencies/maven/artifacts/com/google/code/findbugs:jsr305"
7
+ "//dependencies/maven/artifacts/com/google/code/findbugs:jsr305" ,
8
+ "//dependencies/maven/artifacts/com/google/errorprone:error-prone-annotations"
8
9
],
9
10
visibility = [
10
11
"//dependencies/maven/artifacts:__subpackages__"
You can’t perform that action at this time.
0 commit comments