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

Commit 5652357c authored by Steven Moreland's avatar Steven Moreland Committed by Automerger Merge Worker
Browse files

Merge "Allow defaults in java_genrule modules" am: 371dc53d am: f11c08ab

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1850961

Change-Id: I11bf3198f2944ef61a55c24b4867975f8565ffd0
parents 3461a8a2 f11c08ab
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -64,6 +64,7 @@ func genRuleFactory() android.Module {
	module := genrule.NewGenRule()

	android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon)
	android.InitDefaultableModule(module)

	return module
}
@@ -76,6 +77,7 @@ func genRuleFactoryHost() android.Module {
	module := genrule.NewGenRule()

	android.InitAndroidArchModule(module, android.HostSupported, android.MultilibCommon)
	android.InitDefaultableModule(module)

	return module
}