Allow dynamically calculated inherit-product path

Bug: 193566316
Test: internal
Change-Id: Iaa7b68cf459f9a694ae9d37a32c9372cf8a8335a
This commit is contained in:
Sasha Smundak
2021-07-22 18:32:56 -07:00
parent e083a05ad0
commit 6609ba7664
7 changed files with 475 additions and 55 deletions

View File

@@ -58,3 +58,8 @@ func (s ScopeBase) Call(_ string, _ []string) []string {
func (s ScopeBase) SetFunc(_ string, _ func([]string) []string) {
panic("implement me")
}
// Used to find all makefiles in the source tree
type MakefileFinder interface {
Find(root string) []string
}