• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1java_library(
2    name = "api",
3    srcs = glob([
4        "src/main/java/**/*.java",
5    ]),
6    javacopts = ["-Xep:DoNotCall:OFF"],  # Remove once requiring Bazel 3.4.0+; allows non-final
7    visibility = ["//visibility:public"],
8    deps = [
9        "//context",
10        "@com_google_code_findbugs_jsr305//jar",
11        "@com_google_errorprone_error_prone_annotations//jar",
12        "@com_google_guava_failureaccess//jar",  # future transitive dep of Guava. See #5214
13        "@com_google_guava_guava//jar",
14        "@com_google_j2objc_j2objc_annotations//jar",
15    ],
16)
17