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

Commit ba2027d6 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...

Merge "Allow defaults in java_genrule modules" am: 371dc53d am: f11c08ab am: 5652357c am: 29481a8e am: c2dee33c

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

Change-Id: I3d3dd2eb4bf14b86c190c211779aef8ad6e1c874
parents bd3b0d8a c2dee33c
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
}