diff options
Diffstat (limited to 'android/module_proxy.go')
-rw-r--r-- | android/module_proxy.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/android/module_proxy.go b/android/module_proxy.go index 1f9679926..30459b9cd 100644 --- a/android/module_proxy.go +++ b/android/module_proxy.go @@ -9,6 +9,8 @@ type ModuleProxy struct { module blueprint.ModuleProxy } +var _ Module = (*ModuleProxy)(nil) + func (m ModuleProxy) Name() string { return m.module.Name() } @@ -225,3 +227,7 @@ func (m ModuleProxy) DecodeMultilib(ctx ConfigContext) (string, string) { func (m ModuleProxy) Overrides() []string { panic("method is not implemented on ModuleProxy") } + +func (m ModuleProxy) VintfFragments(ctx ConfigurableEvaluatorContext) []string { + panic("method is not implemented on ModuleProxy") +} |