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

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

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

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

Change-Id: Ied4891a346b137a2666ce01cb27297f1feae2f88
parents 776a2bcb 371dc53d
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
}