aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2015-09-24 11:18:52 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2015-09-24 14:23:16 +0000
commit08be947f2b7c4b4ee828b059b61233286611cf1a (patch)
tree9ee365f923f59eb8ae0b9af0fbbff8bd530605a4 /src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java
parenta56762e81e306e521b3cf286a08a741376dfb6ea (diff)
*** Reason for rollback *** Rollforward with fix *** Original change description *** Automated [] rollback of []. *** Reason for rollback *** Breaks tests. *** Original change description *** Remove gen jar implicit output. This allows us to only create a jar for libraries that use annotation processing. It also increases our flexibility by reducing the visibility of these gen jars to an undocumented output group. -- MOS_MIGRATED_REVID=103833283
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java
index 30112f796c..6820bd5cf4 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/android/AndroidLibrary.java
@@ -118,8 +118,7 @@ public abstract class AndroidLibrary implements RuleConfiguredTargetFactory {
resourceApk,
transitiveIdlImportData,
false /* addCoverageSupport */,
- true /* collectJavaCompilationArgs */,
- AndroidRuleClasses.ANDROID_LIBRARY_GEN_JAR);
+ true /* collectJavaCompilationArgs */);
if (javaTargetAttributes == null) {
return null;
}