diff options
Diffstat (limited to 'genrule/genrule.go')
-rw-r--r-- | genrule/genrule.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/genrule/genrule.go b/genrule/genrule.go index b23530369..c0942d3f1 100644 --- a/genrule/genrule.go +++ b/genrule/genrule.go @@ -643,6 +643,8 @@ func generatorFactory(taskGenerator taskFunc, props ...interface{}) *Module { type noopImageInterface struct{} func (x noopImageInterface) ImageMutatorBegin(android.BaseModuleContext) {} +func (x noopImageInterface) VendorVariantNeeded(android.BaseModuleContext) bool { return false } +func (x noopImageInterface) ProductVariantNeeded(android.BaseModuleContext) bool { return false } func (x noopImageInterface) CoreVariantNeeded(android.BaseModuleContext) bool { return false } func (x noopImageInterface) RamdiskVariantNeeded(android.BaseModuleContext) bool { return false } func (x noopImageInterface) VendorRamdiskVariantNeeded(android.BaseModuleContext) bool { return false } |