Add OWNERS to finder's cache

Build target owners will create a zip of all OWNERS
files in source code based on the cached OWNERS.list

Bug: 114242886
Test: make dist -j owners

Change-Id: I97fa3737e1a2a240a08e072dfb2905c11f28705b
This commit is contained in:
Simran Basi 2018-09-06 12:23:28 -07:00
parent ca126c70d7
commit df98cd7aa4
1 changed files with 8 additions and 1 deletions

View File

@ -62,6 +62,7 @@ func NewSourceFinder(ctx Context, config Config) (f *finder.Finder) {
"Android.bp", "Android.bp",
"Blueprints", "Blueprints",
"CleanSpec.mk", "CleanSpec.mk",
"OWNERS",
"TEST_MAPPING", "TEST_MAPPING",
}, },
} }
@ -102,10 +103,16 @@ func FindSources(ctx Context, config Config, f *finder.Finder) {
ctx.Fatalf("Could not export module list: %v", err) ctx.Fatalf("Could not export module list: %v", err)
} }
owners := f.FindNamedAt(".", "OWNERS")
err = dumpListToFile(owners, filepath.Join(dumpDir, "OWNERS.list"))
if err != nil {
ctx.Fatalf("Could not find OWNERS: %v", err)
}
testMappings := f.FindNamedAt(".", "TEST_MAPPING") testMappings := f.FindNamedAt(".", "TEST_MAPPING")
err = dumpListToFile(testMappings, filepath.Join(dumpDir, "TEST_MAPPING.list")) err = dumpListToFile(testMappings, filepath.Join(dumpDir, "TEST_MAPPING.list"))
if err != nil { if err != nil {
ctx.Fatalf("Could not find modules: %v", err) ctx.Fatalf("Could not find TEST_MAPPING: %v", err)
} }
androidBps := f.FindNamedAt(".", "Android.bp") androidBps := f.FindNamedAt(".", "Android.bp")