diff options
Diffstat (limited to 'bloaty/bloaty.go')
-rw-r--r-- | bloaty/bloaty.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bloaty/bloaty.go b/bloaty/bloaty.go index a076d47f6..d78a907fb 100644 --- a/bloaty/bloaty.go +++ b/bloaty/bloaty.go @@ -85,7 +85,7 @@ func fileSizesSingleton() android.Singleton { func (singleton *sizesSingleton) GenerateBuildActions(ctx android.SingletonContext) { var deps android.Paths ctx.VisitAllModuleProxies(func(m android.ModuleProxy) { - if !android.OtherModuleProviderOrDefault(ctx, m, android.CommonModuleInfoProvider).ExportedToMake { + if !android.OtherModulePointerProviderOrDefault(ctx, m, android.CommonModuleInfoProvider).ExportedToMake { return } filePaths, ok := android.OtherModuleProvider(ctx, m, fileSizeMeasurerKey) |