aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Michael Staib <mstaib@google.com>2016-05-12 17:35:56 +0000
committerGravatar Klaus Aehlig <aehlig@google.com>2016-05-13 08:27:31 +0000
commit3ae058d0fea53dd629d639ec8007c8c443ab47f2 (patch)
tree71ea7d24c380425077c066dcf162ce4bce8092fc
parent442f095ae658a82bde02b296263def07f0938f79 (diff)
Finally remove the android_jack attribute from android_sdk.
Deletes the now-useless android_jack attribute; its functionality has already been turned off, so there is not much to remove besides the attribute definition. -- MOS_MIGRATED_REVID=122171309
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/AndroidRuleClasses.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidRuleClasses.java b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidRuleClasses.java
index 22ea3ce4b2..a6a612a42a 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidRuleClasses.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidRuleClasses.java
@@ -346,10 +346,6 @@ public final class AndroidRuleClasses {
.add(attr("aidl", LABEL).mandatory().cfg(HOST).allowedFileTypes(ANY_FILE).exec())
.add(attr("android_jar", LABEL).mandatory().cfg(HOST).allowedFileTypes(JavaSemantics.JAR))
.add(attr("shrinked_android_jar", LABEL).mandatory().cfg(HOST).allowedFileTypes(ANY_FILE))
- .add(
- attr("android_jack", LABEL)
- .cfg(HOST)
- .allowedFileTypes(ANY_FILE))
.add(attr("annotations_jar", LABEL).mandatory().cfg(HOST).allowedFileTypes(ANY_FILE))
.add(attr("main_dex_classes", LABEL).mandatory().cfg(HOST).allowedFileTypes(ANY_FILE))
.add(attr("apkbuilder", LABEL).mandatory().cfg(HOST).allowedFileTypes(ANY_FILE).exec())