Home
last modified time | relevance | path

Searched refs:fileListFile (Results 1 – 3 of 3) sorted by relevance

/build/soong/common/
Dglob.go76 fileListFile := filepath.Join(outDir, "glob", globToString(globPattern))
77 depFile := fileListFile + ".d"
80 files, err := glob.GlobWithDepFile(globPattern, fileListFile, depFile, excludes)
85 GlobRule(ctx, globPattern, excludes, fileListFile, depFile)
88 ctx.AddNinjaFileDeps(fileListFile)
94 fileListFile, depFile string) { argument
100 Outputs: []string{fileListFile},
/build/soong/java/
Dresources.go59 fileListFile := common.ResPathWithName(ctx, dir, "resources.list")
60 depFile := fileListFile.String() + ".d"
63 common.GlobRule(ctx, glob, excludes, fileListFile.String(), depFile)
64 jarSpecs = append(jarSpecs, jarSpec{fileListFile, dir})
/build/soong/glob/
Dglob.go39 func GlobWithDepFile(glob, fileListFile, depFile string, excludes []string) (files []string, err er… argument
47 writeFileIfChanged(fileListFile, []byte(fileList), 0666)
48 deptools.WriteDepFile(depFile, fileListFile, dirs)