diff options
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 |