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:
parent
ca126c70d7
commit
df98cd7aa4
|
@ -62,6 +62,7 @@ func NewSourceFinder(ctx Context, config Config) (f *finder.Finder) {
|
|||
"Android.bp",
|
||||
"Blueprints",
|
||||
"CleanSpec.mk",
|
||||
"OWNERS",
|
||||
"TEST_MAPPING",
|
||||
},
|
||||
}
|
||||
|
@ -102,10 +103,16 @@ func FindSources(ctx Context, config Config, f *finder.Finder) {
|
|||
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")
|
||||
err = dumpListToFile(testMappings, filepath.Join(dumpDir, "TEST_MAPPING.list"))
|
||||
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")
|
||||
|
|
Loading…
Reference in New Issue