Merge "Refactor for preliminary Rust vendor image support"

This commit is contained in:
Ivan Lozano
2020-12-11 13:40:20 +00:00
committed by Gerrit Code Review
9 changed files with 65 additions and 41 deletions

View File

@@ -211,6 +211,18 @@ func (mod *Module) HasVendorVariant() bool {
return false
}
func (mod *Module) IsVndkExt() bool {
return false
}
func (c *Module) IsVndkPrivate(config android.Config) bool {
return false
}
func (mod *Module) InProduct() bool {
return false
}
func (mod *Module) SdkVersion() string {
return ""
}