summaryrefslogtreecommitdiff
path: root/android/apex.go
diff options
context:
space:
mode:
author Yu Liu <yudiliu@google.com> 2025-02-28 12:05:20 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-02-28 12:05:20 -0800
commit58047e846963c84c2784a685d4c2644bd7c80ff6 (patch)
treec3b95847c8582b0d33fe7a6d78eed8c3d7a52e24 /android/apex.go
parent9cbe288fa7eaf56a62c764bfcba35fc550543208 (diff)
parent71f1ea3f81feae294a3031799cd638c38610850e (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.go2
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