diff options
author | 2025-02-28 12:05:20 -0800 | |
---|---|---|
committer | 2025-02-28 12:05:20 -0800 | |
commit | 58047e846963c84c2784a685d4c2644bd7c80ff6 (patch) | |
tree | c3b95847c8582b0d33fe7a6d78eed8c3d7a52e24 /android/container.go | |
parent | 9cbe288fa7eaf56a62c764bfcba35fc550543208 (diff) | |
parent | 71f1ea3f81feae294a3031799cd638c38610850e (diff) |
Merge changes from topics "EqualModules", "tidyPhonySingleton" into main
* changes:
Convert tidyPhonySingleton, jdepsGeneratorSingleton and genNoticeBuildRules to use ModuleProxy.
Make EqualModules a free function.
Diffstat (limited to 'android/container.go')
-rw-r--r-- | android/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/container.go b/android/container.go index 5dc97d38e..a5aab79bb 100644 --- a/android/container.go +++ b/android/container.go @@ -449,7 +449,7 @@ func generateContainerInfo(ctx ModuleContext) ContainersInfo { } func getContainerModuleInfo(ctx ModuleContext, module Module) (ContainersInfo, bool) { - if ctx.EqualModules(ctx.Module(), module) { + if EqualModules(ctx.Module(), module) { return ctx.getContainersInfo(), true } |