diff options
author | 2025-02-28 12:05:20 -0800 | |
---|---|---|
committer | 2025-02-28 12:05:20 -0800 | |
commit | 58047e846963c84c2784a685d4c2644bd7c80ff6 (patch) | |
tree | c3b95847c8582b0d33fe7a6d78eed8c3d7a52e24 /android/apex.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/apex.go')
-rw-r--r-- | android/apex.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/apex.go b/android/apex.go index 4e92f44f6..39de6de33 100644 --- a/android/apex.go +++ b/android/apex.go @@ -196,7 +196,7 @@ func IsDepInSameApex(ctx BaseModuleContext, module, dep Module) bool { return false } - if !ctx.EqualModules(ctx.Module(), module) { + if !EqualModules(ctx.Module(), module) { if moduleInfo, ok := OtherModuleProvider(ctx, module, DepInSameApexInfoProvider); ok { if !moduleInfo.Checker.OutgoingDepIsInSameApex(depTag) { return false |