Merge "Support defaults properties in java_system_module"

This commit is contained in:
Tobias Thierer 2019-05-29 11:09:01 +00:00 committed by Gerrit Code Review
commit 4b06c20215

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