Searched refs:baseDir (Results 1 – 5 of 5) sorted by relevance
/build/soong/java/ |
D | gen.go | 124 baseDir := strings.TrimSuffix(srcFile.String(), srcFile.Rel()) 125 if baseDir != "" && !android.InList(baseDir, baseDirs) { 126 baseDirs = append(baseDirs, baseDir)
|
/build/soong/cc/ |
D | gen.go | 130 baseDir := strings.TrimSuffix(aidlFile.String(), aidlFile.Rel()) 131 if baseDir != "" { 132 aidlFlags += " -I" + baseDir
|
/build/soong/ui/build/ |
D | config.go | 112 if baseDir, ok := ret.environ.Get("OUT_DIR_COMMON_BASE"); ok { 116 outDir = filepath.Join(baseDir, filepath.Base(wd))
|
/build/soong/android/ |
D | paths.go | 1239 baseDir string // "../" for Make paths to convert "out/soong" to "out", "" for Soong paths member 1252 return filepath.Join(p.config.buildDir, p.baseDir, p.path) 1273 p.baseDir = "../"
|
/build/blueprint/ |
D | context.go | 609 func (c *Context) ListModulePaths(baseDir string) (paths []string, err error) { 623 lines[i] = filepath.Join(baseDir, lines[i]) 656 baseDir := filepath.Dir(rootFile) 657 pathsToParse, err := c.ListModulePaths(baseDir) 661 return c.ParseFileList(baseDir, pathsToParse, config)
|