Searched refs:JoinPath (Results 1 – 6 of 6) sorted by relevance
/build/soong/bp2build/ |
D | symlink_forest.go | 86 err := os.Symlink(shared.JoinPath(topdir, src), shared.JoinPath(topdir, dst)) 104 srcDirMap := readdirToMap(shared.JoinPath(topdir, srcDir)) 105 buildFilesMap := readdirToMap(shared.JoinPath(topdir, buildFilesDir)) 116 err := os.MkdirAll(shared.JoinPath(topdir, forestDir), 0777) 128 forestChild := shared.JoinPath(forestDir, f) 129 srcChild := shared.JoinPath(srcDir, f) 130 buildFilesChild := shared.JoinPath(buildFilesDir, f) 191 os.RemoveAll(shared.JoinPath(topdir, forest))
|
/build/soong/shared/ |
D | paths_test.go | 29 assertEqual(t, "/a/b", JoinPath("c/d", "/a/b")) 30 assertEqual(t, "a/b", JoinPath("a", "b")) 31 assertEqual(t, "/a/b", JoinPath("x", "/a", "b"))
|
D | paths.go | 36 func JoinPath(base string, rest ...string) string { func
|
/build/soong/cmd/soong_build/ |
D | main.go | 129 …err = deptools.WriteDepFile(shared.JoinPath(topDir, secondArgs.DepFile), secondArgs.OutFile, ninja… 139 absoluteQueryViewDir := shared.JoinPath(topDir, bazelQueryViewDir) 202 …err := deptools.WriteDepFile(shared.JoinPath(topDir, blueprintArgs.DepFile), blueprintArgs.OutFile… 243 result, err := shared.EnvFromFile(shared.JoinPath(topDir, availableEnvFile)) 297 path := shared.JoinPath(topDir, usedEnvFile) 313 touch(shared.JoinPath(topDir, finalOutputFile)) 328 ninjaFile := shared.JoinPath(topDir, buildDir, ninjaFileName) 329 ninjaFileD := shared.JoinPath(topDir, buildDir, ninjaFileName) 403 generatedRoot := shared.JoinPath(configuration.BuildDir(), "bp2build") 404 workspaceRoot := shared.JoinPath(configuration.BuildDir(), "workspace") [all …]
|
/build/soong/ui/build/ |
D | soong.go | 98 "--available_env", shared.JoinPath(config.SoongOutDir(), availableEnvFile), 99 "--used_env", shared.JoinPath(config.SoongOutDir(), usedEnvFile+suffix), 108 mainNinjaFile := shared.JoinPath(config.SoongOutDir(), "build.ninja") 109 globFile := shared.JoinPath(config.SoongOutDir(), ".bootstrap/soong-build-globs.ninja") 110 bootstrapGlobFile := shared.JoinPath(config.SoongOutDir(), ".bootstrap/build-globs.ninja") 111 bootstrapDepFile := shared.JoinPath(config.SoongOutDir(), ".bootstrap/build.ninja.d") 119 args.OutFile = shared.JoinPath(config.SoongOutDir(), ".bootstrap/build.ninja") 130 bp2BuildMarkerFile := shared.JoinPath(config.SoongOutDir(), ".bootstrap/bp2build_workspace_marker")
|
/build/soong/java/ |
D | rro_test.go | 112 expectedPath = []string{shared.JoinPath("out/target/product/test_device/product/overlay")} 119 expectedPath = []string{shared.JoinPath("out/target/product/test_device/product/overlay/faza")} 163 …expectedPath := []string{shared.JoinPath("out/target/product/test_device/product/overlay/default_t… 180 expectedPath = []string{shared.JoinPath("out/target/product/test_device/system/overlay")}
|