Lines Matching refs:buildDir
62 return c.buildDir
97 buildDir string // the path of the build output directory member
203 func NullConfig(buildDir string) Config {
206 buildDir: buildDir,
213 func TestConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config {
235 buildDir: buildDir,
257 func TestArchConfigNativeBridge(buildDir string, env map[string]string, bp string, fs map[string][]…
258 testConfig := TestArchConfig(buildDir, env, bp, fs)
271 func TestArchConfigFuchsia(buildDir string, env map[string]string, bp string, fs map[string][]byte)…
272 testConfig := TestConfig(buildDir, env, bp, fs)
288 func TestArchConfig(buildDir string, env map[string]string, bp string, fs map[string][]byte) Config…
289 testConfig := TestConfig(buildDir, env, bp, fs)
320 func NewConfig(srcDir, buildDir string, moduleListFile string) (Config, error) {
323 ConfigFileName: filepath.Join(buildDir, configFileName),
324 ProductVariablesFileName: filepath.Join(buildDir, productVariablesFileName),
329 buildDir: buildDir,
342 absBuildDir, err := filepath.Abs(buildDir)
362 inMakeFile := filepath.Join(buildDir, ".soong.in_make")
476 return filepath.Join(c.buildDir, "host", c.PrebuiltOS(), "bin")
766 strings.HasPrefix(path, filepath.Join(c.buildDir, "target", "product"))