xref: /aosp_15_r20/external/grpc-grpc-java/stub/BUILD.bazel (revision e07d83d3ffcef9ecfc9f7f475418ec639ff0e5fe)
1*e07d83d3SAndroid Build Coastguard Workerjava_library(
2*e07d83d3SAndroid Build Coastguard Worker    name = "stub",
3*e07d83d3SAndroid Build Coastguard Worker    srcs = glob([
4*e07d83d3SAndroid Build Coastguard Worker        "src/main/java/**/*.java",
5*e07d83d3SAndroid Build Coastguard Worker    ]),
6*e07d83d3SAndroid Build Coastguard Worker    visibility = ["//visibility:public"],
7*e07d83d3SAndroid Build Coastguard Worker    deps = [
8*e07d83d3SAndroid Build Coastguard Worker        "//api",
9*e07d83d3SAndroid Build Coastguard Worker        "//context",
10*e07d83d3SAndroid Build Coastguard Worker        "@com_google_code_findbugs_jsr305//jar",
11*e07d83d3SAndroid Build Coastguard Worker        "@com_google_errorprone_error_prone_annotations//jar",
12*e07d83d3SAndroid Build Coastguard Worker        "@com_google_guava_guava//jar",
13*e07d83d3SAndroid Build Coastguard Worker        "@com_google_j2objc_j2objc_annotations//jar",
14*e07d83d3SAndroid Build Coastguard Worker    ],
15*e07d83d3SAndroid Build Coastguard Worker)
16*e07d83d3SAndroid Build Coastguard Worker
17*e07d83d3SAndroid Build Coastguard Worker# javax.annotation.Generated is not included in the default root modules in 9,
18*e07d83d3SAndroid Build Coastguard Worker# see: http://openjdk.java.net/jeps/320.
19*e07d83d3SAndroid Build Coastguard Workerjava_library(
20*e07d83d3SAndroid Build Coastguard Worker    name = "javax_annotation",
21*e07d83d3SAndroid Build Coastguard Worker    neverlink = 1,  # @Generated is source-retention
22*e07d83d3SAndroid Build Coastguard Worker    visibility = ["//visibility:public"],
23*e07d83d3SAndroid Build Coastguard Worker    exports = ["@org_apache_tomcat_annotations_api//jar"],
24*e07d83d3SAndroid Build Coastguard Worker)
25