aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/grpc/BUILD
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-04-21 15:18:39 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-04-22 11:48:50 +0000
commit44304fad0709e67ada82945d0fcca016dabee8e6 (patch)
treeb6141c9b947d17b78289b4a79e5d7b5355aadb07 /third_party/grpc/BUILD
parent342a14ee77b7ae007423da52d88780f385db2c47 (diff)
Fix the srcs filegroup in Bazel
This broke tools/cpp/test/... due to missing files. Unfortunately those tests uses docker and until we can run docker in userland, we cannot run those on Jenkins. -- MOS_MIGRATED_REVID=120445118
Diffstat (limited to 'third_party/grpc/BUILD')
-rw-r--r--third_party/grpc/BUILD5
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/grpc/BUILD b/third_party/grpc/BUILD
index 6198630bba..6a54da5988 100644
--- a/third_party/grpc/BUILD
+++ b/third_party/grpc/BUILD
@@ -2,6 +2,11 @@ licenses(["unencumbered"])
package(default_visibility = ["//visibility:public"])
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+)
+
java_import(
name = "grpc-jar",
jars = ["grpc-all-0.13.2.jar"],