diff options
| author | 2019-06-10 13:12:56 -0700 | |
|---|---|---|
| committer | 2019-06-10 13:51:17 -0700 | |
| commit | 59037628f4232b98887738d3598a5567798d1809 (patch) | |
| tree | 96e86dcb48159006cfccf0a76b14cd8f3de27026 /java/java.go | |
| parent | b6fd6f75f29a98a2fcc5fc3510d0f8a320f73870 (diff) | |
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 'java/java.go')
| -rw-r--r-- | java/java.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/java/java.go b/java/java.go index fee262d83..a1addb38c 100644 --- a/java/java.go +++ b/java/java.go @@ -2131,9 +2131,6 @@ type Defaults struct { android.DefaultsModuleBase } -func (*Defaults) GenerateAndroidBuildActions(ctx android.ModuleContext) { -} - // java_defaults provides a set of properties that can be inherited by other java or android modules. // // A module can use the properties from a java_defaults module using `defaults: ["defaults_module_name"]`. Each |