diff options
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 "" } |