Home
last modified time | relevance | path

Searched refs:phony (Results 1 – 14 of 14) sorted by relevance

/build/soong/android/
Dphony.go52 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]...)
Dmakevars.go199 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})
DAndroid.bp75 "phony.go",
Dpaths.go1913 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, ""}}
Dmodule.go454 Phony(phony string, deps ...Path)
/build/soong/phony/
Dphony.go15 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
DAndroid.bp6 name: "soong-phony",
7 pkgPath: "android/soong/phony",
13 "phony.go",
/build/make/tools/canoninja/
DREADME.md34 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/
Dphony_package.mk3 $(error LOCAL_SRC_FILES are not allowed for phony packages)
/build/soong/docs/
Dtidy.md178 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/
Ddexpreopt_bootjars.go893 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/
Dinternal_concepts.md13phony 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
Dconcepts.md161 * late.mk is used to define phony rules to take advantage of Make’s ability to
/build/blueprint/bootstrap/
Dbootstrap.go144 phony = pctx.StaticRule("phony", var