Remove empty DepsMutator methods

Add an empty DepsMutator to ModuleBase so it doesn't have to be
implemented on every module that doesn't need it.

Test: all soong tests
Change-Id: I545a832a0dbf27386d3080377a75ea482cd9ce59
This commit is contained in:
Colin Cross
2019-02-01 16:53:07 -08:00
parent a74ca046da
commit 5f692ec219
15 changed files with 3 additions and 51 deletions

View File

@@ -38,9 +38,6 @@ func PhonyFactory() android.Module {
return module
}
func (p *phony) DepsMutator(ctx android.BottomUpMutatorContext) {
}
func (p *phony) GenerateAndroidBuildActions(ctx android.ModuleContext) {
p.requiredModuleNames = ctx.RequiredModuleNames()
if len(p.requiredModuleNames) == 0 {