Merge "Add debug ramdisk variant."

This commit is contained in:
Treehugger Robot
2021-05-02 23:54:40 +00:00
committed by Gerrit Code Review
12 changed files with 93 additions and 2 deletions

View File

@@ -608,6 +608,10 @@ func (c *Module) VendorRamdiskVariantNeeded(ctx android.BaseModuleContext) bool
return c.Properties.VendorRamdiskVariantNeeded
}
func (c *Module) DebugRamdiskVariantNeeded(ctx android.BaseModuleContext) bool {
return false
}
func (c *Module) RecoveryVariantNeeded(ctx android.BaseModuleContext) bool {
return c.Properties.RecoveryVariantNeeded
}