forked from google/cronet-transport-for-okhttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
27 lines (21 loc) · 680 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
27
load("//tools/build_defs/license:license.bzl", "license")
load("@build_bazel_rules_android//android:rules.bzl", "android_library")
load("//devtools/copybara/rules:copybara.bzl", "copybara_config_test")
package(default_applicable_licenses = ["//:license"])
license(
name = "license",
package_name = "okhttp_cronet_transport",
)
licenses(["notice"])
exports_files(["LICENSE"])
android_library(
name = "okhttp_cronet_transport",
visibility = ["//visibility:public"],
exports = [
"//java/com/google/net/cronet/okhttptransport:okhttp_cronet_transport",
],
)
copybara_config_test(
name = "copybara_config_test",
config = "copy.bara.sky",
)