Support defaults properties in java_system_module

Test: none
Change-Id: I08e5c39690b3c9960dc5e99c4b866a2523c9eafb
This commit is contained in:
Colin Cross 2019-05-28 13:30:02 -07:00
parent ff3f43857f
commit 667ffa192f

View file

@ -87,11 +87,13 @@ func SystemModulesFactory() android.Module {
module := &SystemModules{}
module.AddProperties(&module.properties)
android.InitAndroidArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon)
android.InitDefaultableModule(module)
return module
}
type SystemModules struct {
android.ModuleBase
android.DefaultableModuleBase
properties SystemModulesProperties