Searched refs:phony (Results 1 – 14 of 14) sorted by relevance
/build/soong/android/ |
D | phony.go | 52 for _, phony := range p.phonyList { 53 p.phonyMap[phony] = SortedUniquePaths(p.phonyMap[phony]) 57 for _, phony := range p.phonyList { 60 Outputs: []WritablePath{PathForPhony(ctx, phony)}, 61 Implicits: p.phonyMap[phony], 68 for _, phony := range p.phonyList { 69 ctx.Phony(phony, p.phonyMap[phony]...)
|
D | makevars.go | 199 phonies []phony 212 type phony struct { struct 242 var phonies []phony 407 func (s *makeVarsSingleton) writeLate(phonies []phony, dists []dist) []byte { 417 for _, phony := range phonies { 418 fmt.Fprintf(buf, ".PHONY: %s\n", phony.name) 419 fmt.Fprintf(buf, "%s: %s\n", phony.name, strings.Join(phony.deps, "\\\n ")) 556 c.phonies = append(c.phonies, phony{name, deps})
|
D | Android.bp | 75 "phony.go",
|
D | paths.go | 1913 func PathForPhony(ctx PathContext, phony string) WritablePath { 1914 if strings.ContainsAny(phony, "$/") { 1915 ReportPathErrorf(ctx, "Phony target contains invalid character ($ or /): %s", phony) 1917 return PhonyPath{basePath{phony, ""}}
|
D | module.go | 454 Phony(phony string, deps ...Path)
|
/build/soong/phony/ |
D | phony.go | 15 package phony package 29 type phony struct { struct 37 module := &phony{} 43 func (p *phony) GenerateAndroidBuildActions(ctx android.ModuleContext) { argument 49 func (p *phony) AndroidMk() android.AndroidMkData { argument
|
D | Android.bp | 6 name: "soong-phony", 7 pkgPath: "android/soong/phony", 13 "phony.go",
|
/build/make/tools/canoninja/ |
D | README.md | 34 build _kati_always_build_: phony 36 build first: phony foo 41 build second: phony bar 59 build _kati_always_build_: phony 61 build second: phony bar 66 build first: phony foo 100 build _kati_always_build_: phony 102 build first: phony foo 107 build second: phony bar 125 build _kati_always_build_: phony [all …]
|
/build/make/core/ |
D | phony_package.mk | 3 $(error LOCAL_SRC_FILES are not allowed for phony packages)
|
/build/soong/docs/ |
D | tidy.md | 178 phony target. For example, a person working on `system/libbase` can build 185 For any directory `d1/d2/d3`, a phony target tidy-d1-d2-d3 is generated 197 source files in *all* directories. This phony target is sometimes 202 A *subset* of each tidy-* phony target is defined to reduce test time. 254 * The `tidy-*` phony targets are only generated for Android.bp modules.
|
/build/soong/java/ |
D | dexpreopt_bootjars.go | 893 phony := android.PathForPhony(ctx, "dump-oat-boot-"+suffix) 897 ImplicitOutput(phony). 901 allPhonies = append(allPhonies, phony) 904 phony := android.PathForPhony(ctx, "dump-oat-boot") 907 Output: phony,
|
/build/bazel/docs/ |
D | internal_concepts.md | 13 …phony goal, e.g. "dist", "sdk", "apps_only", "droidcore" | Top level `filegroup` rule target … 14 Ninja build target (phony) | (readable) alias to a file target… 15 Ninja build target (non-phony) | File target … 44 ### Phony goals {#phony-goal} 49 addition, phony goals are supported. 51 A Phony goal creates a Make-style phony rule, a rule with no commands that can 52 depend on other phony rules or real files. Phony can be called on the same name 55 Some other common phony goals include: `nothing` (perform loading/analysis), 58 Some common phony goals are defined in
|
D | concepts.md | 161 * late.mk is used to define phony rules to take advantage of Make’s ability to
|
/build/blueprint/bootstrap/ |
D | bootstrap.go | 144 phony = pctx.StaticRule("phony", var
|