aboutsummaryrefslogtreecommitdiffstats
path: root/genrule
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-06-10 13:12:56 -0700
committerColin Cross <ccross@android.com>2019-06-10 13:51:17 -0700
commit59037628f4232b98887738d3598a5567798d1809 (patch)
tree96e86dcb48159006cfccf0a76b14cd8f3de27026 /genrule
parentb6fd6f75f29a98a2fcc5fc3510d0f8a320f73870 (diff)
downloadbuild_soong-59037628f4232b98887738d3598a5567798d1809.tar.gz
build_soong-59037628f4232b98887738d3598a5567798d1809.tar.bz2
build_soong-59037628f4232b98887738d3598a5567798d1809.zip
Add GenerateAndroidBuildActions to DefaultsModuleBase
Add an empty GenerateAndroidBuildActiosn to DefaultsModuleBase so that every defaults module doesn't need to provide one. This will also allow adding an implementation in the next patch. Test: m checkbuild Change-Id: I13554bdb3a287c2f18e1efab74d4f08a1ba8620c
Diffstat (limited to 'genrule')
-rw-r--r--genrule/genrule.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/genrule/genrule.go b/genrule/genrule.go
index 87e6747e..b08d3492 100644
--- a/genrule/genrule.go
+++ b/genrule/genrule.go
@@ -582,9 +582,6 @@ type Defaults struct {
android.DefaultsModuleBase
}
-func (*Defaults) GenerateAndroidBuildActions(ctx android.ModuleContext) {
-}
-
func defaultsFactory() android.Module {
return DefaultsFactory()
}