-
Notifications
You must be signed in to change notification settings - Fork 3.9k
/
Copy pathBUILD.bazel
31 lines (29 loc) · 917 Bytes
/
BUILD.bazel
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
load("@rules_jvm_external//:defs.bzl", "artifact")
load("//:java_grpc_library.bzl", "java_grpc_library")
java_library(
name = "rls",
srcs = glob([
"src/main/java/io/grpc/rls/*.java",
]),
visibility = ["//visibility:public"],
deps = [
":rls_java_grpc",
"//:auto_value_annotations",
"//api",
"//core",
"//core:internal",
"//stub",
"//util",
"@io_grpc_grpc_proto//:rls_config_java_proto",
"@io_grpc_grpc_proto//:rls_java_proto",
artifact("com.google.auto.value:auto-value-annotations"),
artifact("com.google.code.findbugs:jsr305"),
artifact("com.google.errorprone:error_prone_annotations"),
artifact("com.google.guava:guava"),
],
)
java_grpc_library(
name = "rls_java_grpc",
srcs = ["@io_grpc_grpc_proto//:rls_proto"],
deps = ["@io_grpc_grpc_proto//:rls_java_proto"],
)