Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9258c467 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Ignore modules which are not exported to Make." into main am: d741b7f9

parents 7fd2b6f9 d741b7f9
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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