mirror of https://github.com/grpc/grpc-java.git
18 lines
604 B
Python
18 lines
604 B
Python
load("@rules_jvm_external//:defs.bzl", "artifact")
|
|
|
|
java_library(
|
|
name = "api",
|
|
srcs = glob([
|
|
"src/main/java/**/*.java",
|
|
"src/context/java/**/*.java",
|
|
]),
|
|
javacopts = ["-Xep:DoNotCall:OFF"], # Remove once requiring Bazel 3.4.0+; allows non-final
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
artifact("com.google.code.findbugs:jsr305"),
|
|
artifact("com.google.errorprone:error_prone_annotations"),
|
|
artifact("com.google.guava:failureaccess"), # future transitive dep of Guava. See #5214
|
|
artifact("com.google.guava:guava"),
|
|
],
|
|
)
|