Merge "Ignore modules which are not exported to Make." into main am: d741b7f9f2
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/2970151 Change-Id: I00b7aa59b8d620b4a1226a1aa1455af01cf945b9 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
9258c46749
1 changed files with 3 additions and 0 deletions
|
@ -85,6 +85,9 @@ func fileSizesSingleton() android.Singleton {
|
|||
func (singleton *sizesSingleton) GenerateBuildActions(ctx android.SingletonContext) {
|
||||
var deps android.Paths
|
||||
ctx.VisitAllModules(func(m android.Module) {
|
||||
if !m.ExportedToMake() {
|
||||
return
|
||||
}
|
||||
filePaths, ok := android.SingletonModuleProvider(ctx, m, fileSizeMeasurerKey)
|
||||
if !ok {
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue