diff options
| author | 2017-10-03 13:14:07 -0700 | |
|---|---|---|
| committer | 2017-10-04 17:19:43 -0700 | |
| commit | 2372923fe0d14b3adf4e6f217e0cf7bdb2c211e1 (patch) | |
| tree | bf7d4d7a24979c001813608354fb8fb451038efe /java/java.go | |
| parent | 7db5d6332fac9c24345e37d467bef957ac3c85dd (diff) | |
Honor resource exclusions in java_resources properties
Honor the default resource exclusions in java_resources properties
including *.java.
Test: m -j checkbuild
Change-Id: Ia117a000680161b54c189758926ddb2068a2a2c3
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index 3726435e9..bab77c5a6 100644 --- a/java/java.go +++ b/java/java.go @@ -481,7 +481,7 @@ func (j *Module) compile(ctx android.ModuleContext) { resDeps = append(resDeps, fileDeps...) if proptools.Bool(j.properties.Include_srcs) { - srcArgs, srcDeps := ResourceFilesToJarArgs(ctx, j.properties.Srcs, j.properties.Exclude_srcs) + srcArgs, srcDeps := SourceFilesToJarArgs(ctx, j.properties.Srcs, j.properties.Exclude_srcs) resArgs = append(resArgs, srcArgs...) resDeps = append(resDeps, srcDeps...) } |