aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib
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/zlib
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/zlib')
-rw-r--r--third_party/zlib/BUILD6
1 files changed, 6 insertions, 0 deletions
diff --git a/third_party/zlib/BUILD b/third_party/zlib/BUILD
index 64976684ee..4186702259 100644
--- a/third_party/zlib/BUILD
+++ b/third_party/zlib/BUILD
@@ -1,5 +1,11 @@
licenses(["notice"]) # BSD/MIT-like license
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//third_party:__pkg__"],
+)
+
cc_library(
name = "zlib",
srcs = glob(["*.c"]),