Home
last modified time | relevance | path

Searched refs:buildDir (Results 1 – 25 of 27) sorted by relevance

12

/build/blueprint/bootstrap/minibp/
Dmain.go38 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/
Dtest_data_test.go112 buildDir, err := ioutil.TempDir("", "soong_test_test")
116 defer os.RemoveAll(buildDir)
120 config := android.TestConfig(buildDir, nil, "", map[string][]byte{
Dtesting.go639 func TestConfig(buildDir string, os android.OsType, env map[string]string,
657 config = android.TestArchConfig(buildDir, env, bp, mockFS)
/build/soong/android/
Dwritedocs.go37 buildDir := absolutePath(ctx.Config().BuildDir())
39 primaryBuilder, err := filepath.Rel(buildDir, binary)
Dbazel_handler_test.go104 buildDir: t.TempDir(),
117 }, p.buildDir
Dpaths.go960 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 …]
Dbazel_handler.go97 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")
Dsoong_config_modules_test.go316 func testConfigWithVendorVars(buildDir, bp string, fs map[string][]byte, vendorVars map[string]map[… argument
317 config := TestConfig(buildDir, nil, bp, fs)
Dtest_asserts.go80 AssertStringEquals(t, message, expected, StringPathRelativeToTop(config.buildDir, actual))
87 AssertDeepEquals(t, message, expected, StringPathsRelativeToTop(config.buildDir, actual))
Dpaths_test.go222 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)
Dfixture.go631 func createFixture(t *testing.T, buildDir string, preparers []*simpleFixturePreparer) Fixture {
632 config := TestConfig(buildDir, nil, "", nil)
Dbazel_paths.go362 ctx.Config().buildDir,
/build/soong/bp2build/
Dbzl_conversion_test.go25 var buildDir string var
29 buildDir, err = ioutil.TempDir("", "bazel_queryview_test")
36 os.RemoveAll(buildDir)
Dbuild_conversion_test.go177 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)
Dcc_object_conversion_test.go214 config := android.TestConfig(buildDir, nil, testCase.blueprint, filesystem)
394 config := android.TestConfig(buildDir, nil, testCase.blueprint, filesystem)
Dsh_conversion_test.go94 config := android.TestConfig(buildDir, nil, testCase.bp, filesystem)
Dpython_binary_conversion_test.go123 config := android.TestConfig(buildDir, nil, testCase.blueprint, filesystem)
Dcc_library_headers_conversion_test.go326 config := android.TestConfig(buildDir, nil, testCase.bp, filesystem)
/build/blueprint/bootstrap/
Dglob.go248 buildDir := config.BuildDir()
250 return filepath.Join(buildDir, mainSubDir, "globs")
252 return filepath.Join(buildDir, bootstrapSubDir, "globs")
Dcleanup.go35 srcDir, buildDir string, under, exempt []string) error {
53 "@@BuildDir@@", buildDir)
Dconfig.go98 RemoveAbandonedFilesUnder(buildDir string) (under, except []string)
Dcommand.go184 buildDir := config.(BootstrapConfig).BuildDir()
323 under, except := c.RemoveAbandonedFilesUnder(buildDir)
324 err := removeAbandonedFilesUnder(ctx, srcDir, buildDir, under, except)
/build/soong/ui/build/
Dsoong.go75 buildDir string member
85 return c.buildDir
171 buildDir: config.SoongOutDir(),
Dconfig.go456 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/
Dmain.go324 func writeFakeNinjaFile(extraNinjaDeps []string, buildDir string) {
328 ninjaFile := shared.JoinPath(topDir, buildDir, ninjaFileName)
329 ninjaFileD := shared.JoinPath(topDir, buildDir, ninjaFileName)

12