diff options
| author | 2017-10-10 01:14:49 +0000 | |
|---|---|---|
| committer | 2017-10-10 01:14:49 +0000 | |
| commit | 2675f5648b8089dca5543b9086ecbacf113508f7 (patch) | |
| tree | 78e6ff17835c8f2a5bc2e5943cc2bc8c2f9fdc77 /java/java.go | |
| parent | 4ddac411cb6075c23bb8a50955afabb477e502df (diff) | |
| parent | 54190b3b134a0209dffbfad03202ef7b9222d561 (diff) | |
Merge changes I5400e4b0,Ia6760b01,I8a076c99
* changes:
Add test for java generated sources
Fix doubled generated source files
Fix mixing genrule dependencies with globs
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/java/java.go b/java/java.go index bab77c5a6..fde88e90f 100644 --- a/java/java.go +++ b/java/java.go @@ -28,7 +28,6 @@ import ( "github.com/google/blueprint/proptools" "android/soong/android" - "android/soong/genrule" "android/soong/java/config" ) @@ -437,12 +436,6 @@ func (j *Module) compile(ctx android.ModuleContext) { srcFileLists = append(srcFileLists, deps.srcFileLists...) - ctx.VisitDirectDeps(func(module blueprint.Module) { - if gen, ok := module.(genrule.SourceFileGenerator); ok { - srcFiles = append(srcFiles, gen.GeneratedSourceFiles()...) - } - }) - srcFileLists = append(srcFileLists, j.ExtraSrcLists...) var jars android.Paths |