aboutsummaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorjyane <jyane.kstm@gmail.com>2018-01-05 00:45:13 +0900
committerEric Anderson <ejona@google.com>2018-01-08 15:33:20 -0800
commit015b2fffa31995ff7923b4076f9324d464b7d827 (patch)
tree4b8e8ee4923a90ccc67e3fb5ccec74909747c5ad /auth
parent3b93fd44bdccbd97f46de2d53d8f449b72f0dc66 (diff)
downloadgrpc-grpc-java-015b2fffa31995ff7923b4076f9324d464b7d827.tar.gz
auth,bazel: add a bazel build definition
Diffstat (limited to 'auth')
-rw-r--r--auth/BUILD.bazel13
1 files changed, 13 insertions, 0 deletions
diff --git a/auth/BUILD.bazel b/auth/BUILD.bazel
new file mode 100644
index 000000000..7cc6214a2
--- /dev/null
+++ b/auth/BUILD.bazel
@@ -0,0 +1,13 @@
+java_library(
+ name = "auth",
+ srcs = glob([
+ "src/main/java/io/grpc/auth/*.java",
+ ]),
+ visibility = ["//visibility:public"],
+ deps = [
+ "//core",
+ "@com_google_auth_google_auth_library_credentials//jar",
+ "@com_google_guava_guava//jar",
+ "@com_google_code_findbugs_jsr305//jar",
+ ],
+)