aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/java
diff options
context:
space:
mode:
authorGravatar Adam Michael <ajmichael@google.com>2016-12-07 22:12:42 +0000
committerGravatar Kristina Chodorow <kchodorow@google.com>2016-12-07 22:22:27 +0000
commite26d26e81db26ab9e3e9d3b5d4602e23d9f50a60 (patch)
treeff7e6639d80f84c58aa9331638f8b20b9c3038a3 /third_party/java
parent2856008a8ee47d1c9ba376e548a1fdb7b064f130 (diff)
Remove BUILD files for checked in Android apksigner.
We are no longer using the checked-in apksigner jar, instead we are now reading this JAR from the Android build tools. A follow-up change will remove the actual JAR. One small step towards making the Bazel binary smaller :) -- PiperOrigin-RevId: 141355143 MOS_MIGRATED_REVID=141355143
Diffstat (limited to 'third_party/java')
-rw-r--r--third_party/java/apksig/BUILD37
-rw-r--r--third_party/java/apksig/BUILD.tools29
2 files changed, 0 insertions, 66 deletions
diff --git a/third_party/java/apksig/BUILD b/third_party/java/apksig/BUILD
deleted file mode 100644
index 8f27672055..0000000000
--- a/third_party/java/apksig/BUILD
+++ /dev/null
@@ -1,37 +0,0 @@
-# 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.
-
-licenses(["notice"])
-
-filegroup(
- name = "embedded_tools",
- srcs = [
- "BUILD.tools",
- "apksigner_deploy.jar",
- ],
- visibility = ["//src:__pkg__"],
-)
-
-filegroup(name = "embedded_apksigner")
-
-filegroup(
- name = "srcs",
- srcs = glob(["**"]),
- visibility = ["//third_party:__pkg__"],
-)
-
-java_import(
- name = "apksigner",
- jars = ["apksigner_deploy.jar"],
-)
diff --git a/third_party/java/apksig/BUILD.tools b/third_party/java/apksig/BUILD.tools
deleted file mode 100644
index 6fbf70cdeb..0000000000
--- a/third_party/java/apksig/BUILD.tools
+++ /dev/null
@@ -1,29 +0,0 @@
-# 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.
-
-# The build file for apksigner when it's in bazel's embedded tools repo.
-
-licenses(["notice"]) # Apache 2.0
-
-java_binary(
- name = "embedded_apksigner",
- main_class = "com.android.apksigner.ApkSignerTool",
- visibility = ["//visibility:public"],
- runtime_deps = [":apksigner"],
-)
-
-java_import(
- name = "apksigner",
- jars = ["apksigner_deploy.jar"],
-)