aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/zip
diff options
context:
space:
mode:
authorGravatar Adam Michael <ajmichael@google.com>2016-10-25 22:20:08 +0000
committerGravatar John Cater <jcater@google.com>2016-10-26 11:11:01 +0000
commit1a3603a8a9441d7438a3925f0af0c8ff2abb1e06 (patch)
treee1849d47b0863f5826e4677f8f5c22fce4e4dcad /tools/zip
parent97cc5be8787145bd0402406b67b2a28df5348788 (diff)
Fix zip_manifest_creator dep in bazel_tools repo with an alias.
In commit 78c19807d2cbb308b830022dcdcc8b03f19f90a9 I accidentally broke aar_import when I moved zip_manifest_creator from tools/android to tools/zip because tools/android does not have separate BUILD and BUILD.tools files. The test did not catch this, because the dependency in tools/android/BUILD is correct in the context of the bazel tree but not in the context of the bazel_tools embedded workspace. -- MOS_MIGRATED_REVID=137209500
Diffstat (limited to 'tools/zip')
-rw-r--r--tools/zip/BUILD5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/zip/BUILD b/tools/zip/BUILD
index 4c5ffe97cb..a7c996e007 100644
--- a/tools/zip/BUILD
+++ b/tools/zip/BUILD
@@ -4,3 +4,8 @@ filegroup(
name = "srcs",
srcs = glob(["**"]),
)
+
+alias(
+ name = "zipper",
+ actual = "//third_party/ijar:zipper",
+)