Merge "Allow defaults in java_genrule modules" am: 371dc53d18 am: f11c08ab55 am: 5652357cbc

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

Change-Id: I123a82e686bdd4e4d98aa46b5d0facc9af9bde7f
This commit is contained in:
Steven Moreland
2021-10-11 18:32:08 +00:00
committed by Automerger Merge Worker

View File

@@ -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
}