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

Commit 29481a8e 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 am: 5652357c

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

Change-Id: I123a82e686bdd4e4d98aa46b5d0facc9af9bde7f
parents 1e27eb95 5652357c
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
}