diff options
author | 2020-12-11 13:40:20 +0000 | |
---|---|---|
committer | 2020-12-11 13:40:20 +0000 | |
commit | f48c89cd39c89834cd9b579db334cfbdc42091f0 (patch) | |
tree | c65cdb639351f13afdb0102e0ebd19ddad9431f7 /rust/rust.go | |
parent | 08703826bdaad94842b82e4387f160047e785d70 (diff) | |
parent | f9e2172aec5c3d890337e568152b3c2e758a1527 (diff) |
Merge "Refactor for preliminary Rust vendor image support"
Diffstat (limited to 'rust/rust.go')
-rw-r--r-- | rust/rust.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rust/rust.go b/rust/rust.go index 1ceedf397..c1388d595 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -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 "" } |