aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/grpc/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/grpc/BUILD')
-rw-r--r--third_party/grpc/BUILD11
1 files changed, 8 insertions, 3 deletions
diff --git a/third_party/grpc/BUILD b/third_party/grpc/BUILD
index 6ad6a9ea63..1a09b09d2c 100644
--- a/third_party/grpc/BUILD
+++ b/third_party/grpc/BUILD
@@ -17,9 +17,9 @@ config_setting(
values = { "cpu": "x64_windows_msvc" },
)
-java_import(
- name = "grpc-jar",
- jars = [
+filegroup(
+ name = "bootstrap-grpc-jars",
+ srcs = [
"grpc-auth-1.3.0.jar",
"grpc-netty-1.3.0.jar",
"grpc-protobuf-1.3.0.jar",
@@ -28,6 +28,11 @@ java_import(
"grpc-core-1.3.0.jar",
"grpc-context-1.3.0.jar",
],
+)
+
+java_import(
+ name = "grpc-jar",
+ jars = [":bootstrap-grpc-jars"],
deps = [
"//third_party:guava",
"//third_party:instrumentation",