HomeSort by relevance Sort by last modified time
    Searched refs:ninja (Results 51 - 75 of 101) sorted by null

1 23 4 5

  /build/kati/cmd/kati/
main.go 84 flag.BoolVar(&generateNinja, "ninja", false, "Generate build.ninja.")
85 flag.BoolVar(&regenNinja, "gen_regen_rule", false, "Generate regenerate build.ninja rule.")
86 flag.StringVar(&ninjaSuffix, "ninja_suffix", "", "suffix for ninja files.")
89 flag.BoolVar(&detectAndroidEcho, "detect_android_echo", false, "detect echo as ninja description.")
  /build/soong/ui/build/
build.go 33 // can be parsed as ninja output.
56 ctx.Fatalln("Failed to create combined ninja file:", err)
61 ctx.Fatalln("Failed to write combined ninja file:", err)
176 // Write combined ninja file
188 // Run ninja
kati.go 50 ctx.Verbosef("Kati ninja suffix too long: %q", katiSuffix)
53 if err := ioutil.WriteFile(strings.TrimSuffix(config.KatiNinjaFile(), "ninja")+"suf", []byte(katiSuffix), 0777); err != nil {
71 "--ninja",
143 // Just do a max. Ninja elides the middle, but that's
180 "--ninja",
util_test.go 48 { // from clang (via ninja testcase)
config.go 60 // Sane default matching ninja
489 return filepath.Join(c.OutDir(), "build"+c.KatiSuffix()+".ninja")
493 return filepath.Join(c.SoongOutDir(), "build.ninja")
498 return filepath.Join(c.OutDir(), "combined.ninja")
500 return filepath.Join(c.OutDir(), "combined"+c.KatiSuffix()+".ninja")
  /build/blueprint/bootstrap/
cleanup.go 31 // removeAbandonedFilesUnder removes any files that appear in the Ninja log, and
92 // Check that the first line indicates that this is a Ninja log version 5
93 const expectedFirstLine = "# ninja log v5"
95 return nil, errors.New("unrecognized ninja log format")
146 fmt.Printf("removed old ninja-created file %s because it has no rule to generate it\n", path)
command.go 50 flag.StringVar(&outFile, "o", "build.ninja", "the Ninja file to output")
52 flag.StringVar(&NinjaBuildDir, "n", "", "the ninja builddir directory")
141 // Add extra ninja file dependencies
173 fatalf("error generating Ninja file contents: %s", err)
bootstrap.go 119 generateBuildNinja = pctx.StaticRule("build.ninja",
130 // Work around a Ninja issue. See https://github.com/martine/ninja/pull/634
618 // build.ninja file.
671 mainNinjaFile := filepath.Join("$buildDir", "build.ninja")
672 primaryBuilderNinjaFile := filepath.Join(bootstrapDir, "build.ninja")
676 // Build the main build.ninja
687 // Add a way to rebuild the primary build.ninja so that globs works
  /build/soong/scripts/
diff_build_graphs.sh 20 # changes to the generated ninja files. This is to reduce the effort required to be confident
35 product and for both sets of versions, and checks whether the ninja files (which implement
100 # find multiproduct_kati and have it build the ninja files for each product
118 #do a diff of the ninja files
120 diff -r "$unzipped1" "$unzipped2" -x build_date.txt -x build_number.txt -x '\.*' -x '*.log' -x build_fingerprint.txt -x build.ninja.d -x '*.zip' > $diffFile || true
  /build/kati/
ninja.go 61 // NinjaGenerator generates ninja build files from DepGraph.
63 // Args is original arguments to generate the ninja file.
467 // ninja will normalize paths (/./, /../), so keep it as is
468 // ninja will emit quoted string for $
583 description = Regenerate ninja files due to dependency
598 return fmt.Sprintf("ninja%s.sh", n.Suffix)
602 return fmt.Sprintf("build%s.ninja", n.Suffix)
667 fmt.Fprintf(f, `exec ninja -f %s "$@"`+"\n", n.ninjaName())
669 fmt.Fprintf(f, `exec ninja -f %s -j500 "$@"`+"\n", n.ninjaName())
755 // Save generates build.ninja from DepGraph
    [all...]
  /build/blueprint/bootstrap/bpglob/
bpglob.go 17 // out build.ninja regenerations when non-matching files are added. See
  /build/soong/cmd/soong_env/
soong_env.go 17 // out build.ninja regenerations when non-matching files are added. See
  /external/skia/fuzz/
coverage 43 ninja -C "$BUILD" "$EXECUTABLE"
  /external/skia/infra/bots/recipe_modules/flavor/
gn_chromebook_flavor.py 150 ninja = 'ninja.exe' if 'Win' in os else 'ninja'
157 self._run('ninja', [ninja, '-k', '0'
gn_chromecast_flavor.py 103 ninja = 'ninja.exe' if 'Win' in os else 'ninja'
108 self._run('ninja', ninja, '-k', '0', '-C', self.out_dir, 'nanobench', 'dm')
gn_android_flavor.py 393 ninja = 'ninja.exe' if 'Win' in os else 'ninja'
398 self._run('ninja', ninja, '-k', '0', '-C', self.out_dir)
  /external/skqp/fuzz/
coverage 43 ninja -C "$BUILD" "$EXECUTABLE"
  /external/skqp/infra/bots/recipe_modules/flavor/
gn_chromebook_flavor.py 150 ninja = 'ninja.exe' if 'Win' in os else 'ninja'
157 self._run('ninja', [ninja, '-k', '0'
gn_chromecast_flavor.py 103 ninja = 'ninja.exe' if 'Win' in os else 'ninja'
108 self._run('ninja', ninja, '-k', '0', '-C', self.out_dir, 'nanobench', 'dm')
  /external/perfetto/tools/
tmux 91 tools/ninja -C $OUT traced traced_probes perfetto trace_to_text test/configs
  /build/blueprint/proptools/
escape.go 19 // NinjaEscape takes a slice of strings that may contain characters that are meaningful to ninja
  /build/blueprint/
scope.go 24 // A Variable represents a global Ninja variable definition that will be written
25 // to the output .ninja file. A variable may contain references to other global
26 // Ninja variables, but circular variable references are not allowed.
35 // A Pool represents a Ninja pool that will be written to the output .ninja
45 // A Rule represents a Ninja build rule that will be written to the output
46 // .ninja file.
glob.go 122 // Prevent file names from reaching ninja's path component limit
  /build/soong/cc/
sabi.go 72 // understand have not been converted to ninja variables yet.
  /build/soong/
doc.go 16 // files and Ninja to do the dependency tracking and subprocess management.
18 // into build rules, which will be written to a build.ninja file by Blueprint.

Completed in 1203 milliseconds

1 23 4 5