aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/zip/BUILD
diff options
context:
space:
mode:
authorGravatar Adam Michael <ajmichael@google.com>2016-10-13 23:09:25 +0000
committerGravatar Yue Gan <yueg@google.com>2016-10-14 09:33:19 +0000
commit78c19807d2cbb308b830022dcdcc8b03f19f90a9 (patch)
tree1dea0ad109a5195415b68756f130a5869007c51c /tools/zip/BUILD
parentf61277fe5d89de793037c739d79b2a0005eaaa76 (diff)
Refactor AarImportRule into a base rule.
Also moves AAR-specific tools from tools/zip into tools/android and renames embedded_jar_extractor to aar_embedded_jars_extractor because in a future change it will extract classes.jar and libs/*.jar. -- MOS_MIGRATED_REVID=136099324
Diffstat (limited to 'tools/zip/BUILD')
-rw-r--r--tools/zip/BUILD25
1 files changed, 0 insertions, 25 deletions
diff --git a/tools/zip/BUILD b/tools/zip/BUILD
index 4ccf9f7273..4c5ffe97cb 100644
--- a/tools/zip/BUILD
+++ b/tools/zip/BUILD
@@ -4,28 +4,3 @@ filegroup(
name = "srcs",
srcs = glob(["**"]),
)
-
-sh_binary(
- name = "zip_manifest_creator",
- srcs = ["zip_manifest_creator.sh"],
- data = ["//third_party/ijar:zipper"],
-)
-
-sh_test(
- name = "zip_manifest_creator_test",
- size = "small",
- srcs = ["zip_manifest_creator_test.sh"],
- data = [":zip_manifest_creator"],
-)
-
-py_binary(
- name = "embedded_jar_extractor",
- srcs = ["embedded_jar_extractor.py"],
- deps = ["//third_party/py/gflags"],
-)
-
-py_test(
- name = "embedded_jar_extractor_test",
- srcs = ["embedded_jar_extractor_test.py"],
- deps = [":embedded_jar_extractor"],
-)