aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/zip
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-17 15:27:32 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-02-17 15:36:59 +0000
commit1bab6b10e72f9c2877af51cc6193c3dad3be6d33 (patch)
tree5851fc7c2da6ba7746e99b3daaf508e6eaadd9d5 /tools/zip
parent829b561d10c5226284d16fb247deac0c4485bb4e (diff)
Stop bundling ijar's sources in bazel_tools
Instead bundle ijar's zipper binary so the skylark rules that depends on it can use it from @bazel_tools. A commit introducing windows config settings broke our appengine tutorial. -- MOS_MIGRATED_REVID=114857080
Diffstat (limited to 'tools/zip')
-rw-r--r--tools/zip/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/zip/BUILD b/tools/zip/BUILD
new file mode 100644
index 0000000000..30fd8c09bc
--- /dev/null
+++ b/tools/zip/BUILD
@@ -0,0 +1,13 @@
+# Build file to expose zipper to the @bazel_tools repository.
+package(default_visibility = ["//visibility:public"])
+
+filegroup(
+ name = "srcs",
+ srcs = ["BUILD"],
+)
+
+# zipper will be added when creating the @bazel_tools repository.
+filegroup(
+ name = "zipper",
+ srcs = glob(["zipper/*"]),
+)