diff options
author | 2025-01-15 00:27:02 +0000 | |
---|---|---|
committer | 2025-01-15 20:54:38 +0000 | |
commit | 2da9d9abca8e1a355f8b9fcbb3ae550bfb40a8b6 (patch) | |
tree | 4f1bb3e56679ae539a4afbac1143281a39804c34 /android/module_proxy.go | |
parent | c41eae5e45123a48fd3ec9a3723fdf7adbb6f148 (diff) |
Convert dex2oatPathFromDep to use ModuleProxy.
Bug: 377723687
Test: Unit tests and compare the ninja and mk files generated.
Change-Id: I99ffe88179991da8e5963605bf76666c8945d290
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 8cc8fa1e7..afca0d72b 100644 --- a/android/module_proxy.go +++ b/android/module_proxy.go @@ -11,6 +11,10 @@ type ModuleProxy struct { var _ Module = (*ModuleProxy)(nil) +func (m ModuleProxy) IsNil() bool { + return m.module.IsNil() +} + func (m ModuleProxy) Name() string { return m.module.Name() } |