diff options
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/android/module.go b/android/module.go index 4e46bdbb3..9f73729fb 100644 --- a/android/module.go +++ b/android/module.go @@ -112,9 +112,6 @@ type Module interface { VintfFragmentModuleNames(ctx ConfigAndErrorContext) []string ConfigurableEvaluator(ctx ConfigAndErrorContext) proptools.ConfigurableEvaluator - - // Get the information about the containers this module belongs to. - ContainersInfo() ContainersInfo } // Qualified id for a module @@ -839,17 +836,6 @@ type ModuleBase struct { buildParams []BuildParams ruleParams map[blueprint.Rule]blueprint.RuleParams variables map[string]string - - // Merged Aconfig files for all transitive deps. - aconfigFilePaths Paths - - // complianceMetadataInfo is for different module types to dump metadata. - // See android.ModuleContext interface. - complianceMetadataInfo *ComplianceMetadataInfo - - // containersInfo stores the information about the containers and the information of the - // apexes the module belongs to. - containersInfo ContainersInfo } func (m *ModuleBase) AddJSONData(d *map[string]interface{}) { @@ -2089,10 +2075,6 @@ func (m *ModuleBase) moduleInfoVariant(ctx ModuleContext) string { return variant } -func (m *ModuleBase) ContainersInfo() ContainersInfo { - return m.containersInfo -} - // Check the supplied dist structure to make sure that it is valid. // // property - the base property, e.g. dist or dists[1], which is combined with the |