aboutsummaryrefslogtreecommitdiffstats
path: root/java/java.go
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-03-01 13:45:09 -0800
committerColin Cross <ccross@android.com>2019-03-03 11:34:47 -0800
commit247e0cfaa463cac03f6fbef53589dc91c336f7c0 (patch)
tree198970138255de95aca207b2bcf7bb3ec02d8f9e /java/java.go
parentafbddd8ddd1af593fbb4978f89d967d45b1a2c5c (diff)
downloadbuild_soong-247e0cfaa463cac03f6fbef53589dc91c336f7c0.tar.gz
build_soong-247e0cfaa463cac03f6fbef53589dc91c336f7c0.tar.bz2
build_soong-247e0cfaa463cac03f6fbef53589dc91c336f7c0.zip
Don't add static libs resources to implemenation jars
Static dependency resources will already be in the resources jar and the implementation and resource jar, they shouldn't be in the implementation jar. Test: m checkbuild Change-Id: I4d4dab1d2e55e92ba9a95a66b246c721b9bf6410
Diffstat (limited to 'java/java.go')
-rw-r--r--java/java.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go
index ecc36089..d230810d 100644
--- a/java/java.go
+++ b/java/java.go
@@ -1133,7 +1133,6 @@ func (j *Module) compile(ctx android.ModuleContext, extraSrcJars ...android.Path
}
jars = append(jars, deps.staticJars...)
- jars = append(jars, deps.staticResourceJars...)
manifest := j.overrideManifest
if !manifest.Valid() && j.properties.Manifest != nil {