-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathBUILD
26 lines (21 loc) · 818 Bytes
/
BUILD
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
load("@build_bazel_rules_android//android:rules.bzl", "android_library")
load("@rules_license//rules:license.bzl", "license")
# removed copybara load statement
package(default_applicable_licenses = ["//:license"])
license(
name = "license",
package_name = "okhttp_cronet_transport",
# license_kinds is not needed as it is automatically inferred by blaze
# but we include it here so that it can be conveniently replaced when
# exported as bazel does not have this feature yet
license_kinds = ["@rules_license//licenses/spdx:Apache-2.0"],
)
licenses(["notice"])
exports_files(["LICENSE"])
android_library(
name = "okhttp_cronet_transport",
visibility = ["//visibility:public"],
exports = [
"//java/com/google/net/cronet/okhttptransport:okhttp_cronet_transport",
],
)