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

Commit bc1f77e5 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix bug in python module hasExtention."

parents 0066864a 3dfd3ce4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -300,7 +300,7 @@ func hasSrcExt(srcs []string, ext string) bool {
}

func (p *Module) hasSrcExt(ctx android.BottomUpMutatorContext, ext string) bool {
	return hasSrcExt(p.properties.Srcs, protoExt)
	return hasSrcExt(p.properties.Srcs, ext)
}

func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) {