diff options
Diffstat (limited to 'rust/rust.go')
| -rw-r--r-- | rust/rust.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/rust/rust.go b/rust/rust.go index 3d701210f..21da5ae6f 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -1065,6 +1065,9 @@ func (mod *Module) minSdkVersion() string { return String(mod.Properties.Min_sdk_version) } +var _ android.ApexModule = (*Module)(nil) + +// Implements android.ApexModule func (mod *Module) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion android.ApiLevel) error { minSdkVersion := mod.minSdkVersion() if minSdkVersion == "apex_inherit" { @@ -1087,6 +1090,7 @@ func (mod *Module) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVer return nil } +// Implements android.ApexModule func (mod *Module) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { depTag := ctx.OtherModuleDependencyTag(dep) |