/build/blueprint/bootstrap/minibp/ |
D | main.go | 38 func (c Config) RemoveAbandonedFilesUnder(buildDir string) (under, exempt []string) { 40 under = []string{filepath.Join(buildDir, ".bootstrap")} 41 exempt = []string{filepath.Join(buildDir, ".bootstrap", "build.ninja")}
|
/build/soong/cc/ |
D | test_data_test.go | 112 buildDir, err := ioutil.TempDir("", "soong_test_test") 116 defer os.RemoveAll(buildDir) 120 config := android.TestConfig(buildDir, nil, "", map[string][]byte{
|
D | testing.go | 639 func TestConfig(buildDir string, os android.OsType, env map[string]string, 657 config = android.TestArchConfig(buildDir, env, bp, mockFS)
|
/build/soong/android/ |
D | writedocs.go | 37 buildDir := absolutePath(ctx.Config().BuildDir()) 39 primaryBuilder, err := filepath.Rel(buildDir, binary)
|
D | bazel_handler_test.go | 104 buildDir: t.TempDir(), 117 }, p.buildDir
|
D | paths.go | 960 if strings.HasPrefix(ret.String(), ctx.Config().buildDir) { 976 if strings.HasPrefix(ret.String(), ctx.Config().buildDir) { 1119 buildDir string member 1136 return p.buildDir 1144 p.fullPath = StringPathRelativeToTop(p.buildDir, p.fullPath) 1145 p.buildDir = OutSoongDir 1186 fullPath := filepath.Join(ctx.Config().buildDir, path) 1188 return OutputPath{basePath{path, ""}, ctx.Config().buildDir, fullPath} 1512 buildDir string member 1532 p.buildDir = OutSoongDir [all …]
|
D | bazel_handler.go | 97 buildDir string member 225 buildDir: c.buildDir, 353 "BUILD_DIR="+absolutePath(paths.buildDir), 564 return filepath.Join(p.buildDir, "bazel") 570 return filepath.Join(p.buildDir, "soong_injection") 576 return filepath.Join(p.buildDir, "workspace")
|
D | soong_config_modules_test.go | 316 func testConfigWithVendorVars(buildDir, bp string, fs map[string][]byte, vendorVars map[string]map[… argument 317 config := TestConfig(buildDir, nil, bp, fs)
|
D | test_asserts.go | 80 AssertStringEquals(t, message, expected, StringPathRelativeToTop(config.buildDir, actual)) 87 AssertDeepEquals(t, message, expected, StringPathsRelativeToTop(config.buildDir, actual))
|
D | paths_test.go | 222 func pathTestConfig(buildDir string) Config { 223 return TestConfig(buildDir, nil, "", nil) 966 buildDir string 972 buildDir: "out", 977 buildDir: "out", 983 buildDir: "out", 1001 testConfig := pathTestConfig(test.buildDir)
|
D | fixture.go | 631 func createFixture(t *testing.T, buildDir string, preparers []*simpleFixturePreparer) Fixture { 632 config := TestConfig(buildDir, nil, "", nil)
|
D | bazel_paths.go | 362 ctx.Config().buildDir,
|
/build/soong/bp2build/ |
D | bzl_conversion_test.go | 25 var buildDir string var 29 buildDir, err = ioutil.TempDir("", "bazel_queryview_test") 36 os.RemoveAll(buildDir)
|
D | build_conversion_test.go | 177 config := android.TestConfig(buildDir, nil, testCase.bp, nil) 319 config := android.TestConfig(buildDir, nil, testCase.bp, nil) 485 config := android.TestConfig(buildDir, nil, testCase.bp, nil) 918 config := android.TestConfig(buildDir, nil, testCase.bp, fs) 1133 config := android.TestConfig(buildDir, nil, testCase.bp, nil) 1225 config := android.TestConfig(buildDir, nil, testCase.bp, nil) 1332 config := android.TestConfig(buildDir, nil, "", fs) 1476 config := android.TestConfig(buildDir, nil, testCase.bp, fs) 1602 config := android.TestConfig(buildDir, nil, testCase.bp, fs)
|
D | cc_object_conversion_test.go | 214 config := android.TestConfig(buildDir, nil, testCase.blueprint, filesystem) 394 config := android.TestConfig(buildDir, nil, testCase.blueprint, filesystem)
|
D | sh_conversion_test.go | 94 config := android.TestConfig(buildDir, nil, testCase.bp, filesystem)
|
D | python_binary_conversion_test.go | 123 config := android.TestConfig(buildDir, nil, testCase.blueprint, filesystem)
|
D | cc_library_headers_conversion_test.go | 326 config := android.TestConfig(buildDir, nil, testCase.bp, filesystem)
|
/build/blueprint/bootstrap/ |
D | glob.go | 248 buildDir := config.BuildDir() 250 return filepath.Join(buildDir, mainSubDir, "globs") 252 return filepath.Join(buildDir, bootstrapSubDir, "globs")
|
D | cleanup.go | 35 srcDir, buildDir string, under, exempt []string) error { 53 "@@BuildDir@@", buildDir)
|
D | config.go | 98 RemoveAbandonedFilesUnder(buildDir string) (under, except []string)
|
D | command.go | 184 buildDir := config.(BootstrapConfig).BuildDir() 323 under, except := c.RemoveAbandonedFilesUnder(buildDir) 324 err := removeAbandonedFilesUnder(ctx, srcDir, buildDir, under, except)
|
/build/soong/ui/build/ |
D | soong.go | 75 buildDir string member 85 return c.buildDir 171 buildDir: config.SoongOutDir(),
|
D | config.go | 456 for buildDir := dir; buildDir != "."; buildDir = filepath.Dir(buildDir) { 457 err := filepath.Walk(buildDir, func(path string, info os.FileInfo, err error) error { 480 return filepath.Join(buildDir, "Android.mk")
|
/build/soong/cmd/soong_build/ |
D | main.go | 324 func writeFakeNinjaFile(extraNinjaDeps []string, buildDir string) { 328 ninjaFile := shared.JoinPath(topDir, buildDir, ninjaFileName) 329 ninjaFileD := shared.JoinPath(topDir, buildDir, ninjaFileName)
|