aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Adam Michael <ajmichael@google.com>2016-09-30 21:31:29 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-10-04 08:53:17 +0000
commit1b4b207170a87fc8f1ac94413ed9af424b674025 (patch)
tree03651e309143c4c8cf64b2605988f4869cc5439f /tools
parent5bb9cc96e3b20197a1a10d965ac64d07b1a25e5a (diff)
Remove dependency on $unzip for aar_import. Replaces the functionality with //third_party/ijar/zipper.
-- MOS_MIGRATED_REVID=134827924
Diffstat (limited to 'tools')
-rw-r--r--tools/zip/BUILD.tools5
-rwxr-xr-xtools/zip/unzip.sh20
2 files changed, 0 insertions, 25 deletions
diff --git a/tools/zip/BUILD.tools b/tools/zip/BUILD.tools
index c7b69d5b4e..58f9267f2f 100644
--- a/tools/zip/BUILD.tools
+++ b/tools/zip/BUILD.tools
@@ -6,11 +6,6 @@ filegroup(
)
sh_binary(
- name = "unzip",
- srcs = ["unzip.sh"],
-)
-
-sh_binary(
name = "zip_manifest_creator",
srcs = ["zip_manifest_creator.sh"],
data = [":zipper"],
diff --git a/tools/zip/unzip.sh b/tools/zip/unzip.sh
deleted file mode 100755
index 12efdbd9aa..0000000000
--- a/tools/zip/unzip.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-#
-# Copyright 2016 The Bazel Authors. All rights reserved.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# This exists so that unzip can be invoked by a SpawnAction. It relies on unzip
-# existing in the user's path.
-
-unzip "$@"