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

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

Merge "Fix panic when missing hiddenapi jar" am: f5df780f am: f5a8e0e8

am: c2c2824f

Change-Id: I358685842ca77c435a02b52bf2b278a841a51808
parents 2a5d962a c2c2824f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,9 +159,9 @@ func stubFlagsRule(ctx android.SingletonContext) {
	for moduleList, pathList := range moduleListToPathList {
		for i := range pathList {
			if pathList[i] == nil {
				pathList[i] = android.PathForOutput(ctx, "missing")
				if ctx.Config().AllowMissingDependencies() {
					missingDeps = append(missingDeps, (*moduleList)[i])
					pathList[i] = android.PathForOutput(ctx, "missing")
				} else {
					ctx.Errorf("failed to find dex jar path for module %q",
						(*moduleList)[i])