Merge "Don't visit disabled modules with SOONG_COLLECT_JAVA_DEPS=true" am: 6d75c9d18e
am: 4e976b56be
am: d139b8037c
Change-Id: I2007374b40673f07085a94d110cf65cfeda9570e
This commit is contained in:
@@ -51,6 +51,10 @@ func (j *jdepsGeneratorSingleton) GenerateBuildActions(ctx android.SingletonCont
|
||||
moduleInfos := make(map[string]android.IdeInfo)
|
||||
|
||||
ctx.VisitAllModules(func(module android.Module) {
|
||||
if !module.Enabled() {
|
||||
return
|
||||
}
|
||||
|
||||
ideInfoProvider, ok := module.(android.IDEInfo)
|
||||
if !ok {
|
||||
return
|
||||
|
Reference in New Issue
Block a user