Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 235810e5 authored by Colin Cross's avatar Colin Cross Committed by android-build-merger
Browse files

Merge "Don't visit disabled modules with SOONG_COLLECT_JAVA_DEPS=true" am:...

Merge "Don't visit disabled modules with SOONG_COLLECT_JAVA_DEPS=true" am: 6d75c9d1 am: 4e976b56
am: d139b803

Change-Id: I2007374b40673f07085a94d110cf65cfeda9570e
parents 593bb1c1 d139b803
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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