diff options
author | 2025-03-21 14:37:59 -0700 | |
---|---|---|
committer | 2025-03-21 14:37:59 -0700 | |
commit | 07638f131eafac3cf915cbeb5d1003037347c41d (patch) | |
tree | 664036fa2d5620262b3260c1b78fcdcc95a1b993 /android/module_proxy.go | |
parent | 8b391cba7fbe102dce869f71c97f0954bf61d4b5 (diff) | |
parent | b790b9cb8f891bf21755ccc97a5405b2ed0687d2 (diff) |
Merge "Clear as much of cc.Module as possible after GenerateBuildActions" into main
Diffstat (limited to 'android/module_proxy.go')
-rw-r--r-- | android/module_proxy.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/android/module_proxy.go b/android/module_proxy.go index 561c4770c..81d90e9a0 100644 --- a/android/module_proxy.go +++ b/android/module_proxy.go @@ -27,6 +27,10 @@ func (m ModuleProxy) GenerateAndroidBuildActions(context ModuleContext) { panic("method is not implemented on ModuleProxy") } +func (m ModuleProxy) CleanupAfterBuildActions() { + panic("method is not implemented on ModuleProxy") +} + func (m ModuleProxy) ComponentDepsMutator(ctx BottomUpMutatorContext) { panic("method is not implemented on ModuleProxy") } |