summaryrefslogtreecommitdiff
path: root/phony
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2019-02-01 16:53:07 -0800
committer Colin Cross <ccross@android.com> 2019-02-01 17:17:58 -0800
commit5f692ec219cb0c46db8f8372ec41e8c35315dd70 (patch)
tree5bb25731a7ab374c44f354254cb70e27ae185b88 /phony
parenta74ca046dacd052e2fe717ba670b309044fe9d15 (diff)
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
Diffstat (limited to 'phony')
-rw-r--r--phony/phony.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/phony/phony.go b/phony/phony.go
index 0c62e8a01..e8a6550fa 100644
--- a/phony/phony.go
+++ b/phony/phony.go
@@ -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 {