Merge "Do not modules in files called "Blueprints"."

This commit is contained in:
Lukács T. Berki
2021-09-03 18:20:39 +00:00
committed by Gerrit Code Review
9 changed files with 171 additions and 174 deletions

View File

@@ -552,7 +552,7 @@ func (c *config) mockFileSystem(bp string, fs map[string][]byte) {
pathsToParse := []string{}
for candidate := range mockFS {
base := filepath.Base(candidate)
if base == "Blueprints" || base == "Android.bp" {
if base == "Android.bp" {
pathsToParse = append(pathsToParse, candidate)
}
}