Merge "Make the names of 'soong_config_module_type_import' modules unique." am: 9e06bb64ca
Change-Id: If52bc9a9c3c867002b3f182db19737bbb1e48fad
This commit is contained in:
@@ -122,7 +122,10 @@ func soongConfigModuleTypeImportFactory() Module {
|
||||
}
|
||||
|
||||
func (m *soongConfigModuleTypeImport) Name() string {
|
||||
return "soong_config_module_type_import_" + soongconfig.CanonicalizeToProperty(m.properties.From)
|
||||
// The generated name is non-deterministic, but it does not
|
||||
// matter because this module does not emit any rules.
|
||||
return soongconfig.CanonicalizeToProperty(m.properties.From) +
|
||||
"soong_config_module_type_import_" + fmt.Sprintf("%p", m)
|
||||
}
|
||||
|
||||
func (*soongConfigModuleTypeImport) Nameless() {}
|
||||
|
Reference in New Issue
Block a user