Searched refs:distDir (Results 1 – 3 of 3) sorted by relevance
/build/soong/ui/build/ |
D | sandbox_linux.go | 60 distDir string 89 sandboxConfig.distDir = absPath(c.ctx, c.config.DistDir()) 90 if derefPath, err := filepath.EvalSymlinks(sandboxConfig.distDir); err == nil { 91 sandboxConfig.distDir = absPath(c.ctx, derefPath) 105 if _, err := os.Stat(sandboxConfig.distDir); !os.IsNotExist(err) { 108 sandboxConfig.distDir) 201 if _, err := os.Stat(sandboxConfig.distDir); !os.IsNotExist(err) { 203 sandboxArgs = append(sandboxArgs, "-B", sandboxConfig.distDir)
|
D | sandbox_darwin.go | 53 distDir := absPath(c.ctx, c.config.DistDir()) 61 "-D", "DIST_DIR=" + distDir,
|
D | config.go | 35 distDir string member 122 if distDir, ok := ret.environ.Get("DIST_DIR"); ok { 123 ret.distDir = filepath.Clean(distDir) 125 ret.distDir = filepath.Join(ret.OutDir(), "dist") 214 if distDir := ret.DistDir(); strings.ContainsRune(distDir, ' ') { 217 ctx.Printf("%q\n", distDir) 652 return c.distDir
|