Merge "Fix bug in python module hasExtention."

This commit is contained in:
Treehugger Robot
2020-11-16 22:56:52 +00:00
committed by Gerrit Code Review

View File

@@ -300,7 +300,7 @@ func hasSrcExt(srcs []string, ext string) bool {
} }
func (p *Module) hasSrcExt(ctx android.BottomUpMutatorContext, 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) { func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) {