OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Ninja
(Results
1 - 23
of
23
) sorted by null
/external/skia/cmake/
cmake_build
31
$here/../third_party/externals/cmake/bin/cmake -DCMAKE_BUILD_TYPE=$BUILDTYPE $here -G
Ninja
32
ninja
/external/skia/tools/
xsan_build
31
$cmake -DCMAKE_BUILD_TYPE=Release -G
Ninja
..
32
ninja
45
$cmake -DLLVM_USE_SANITIZER=MemoryWithOrigins -DCMAKE_BUILD_TYPE=Release -G
Ninja
..
46
ninja
cxx cxxabi # No need to build all of LLVM+Clang with MSAN, just libc++.
/build/blueprint/bootstrap/
doc.go
19
// 1. A
Ninja
binary
28
// used to generate the
Ninja
file that describes how to build the entire source
80
// 2. The bootstrap
Ninja
file template
89
// The bootstrap
Ninja
file template describes the build actions necessary to
91
// of placeholder
Ninja
variable values that get filled in by the bootstrap
92
// script to create a usable
Ninja
file. It can be created by running the
95
// create a bootstrap
Ninja
file template named 'build.
ninja
.in'.
99
// is responsible for filling in the bootstrap
Ninja
file template with some
102
// the template file to produce a usable build.
ninja
file
[
all
...]
bootstrap.go
108
// Work around a
Ninja
issue. See https://github.com/martine/
ninja
/pull/634
296
// minibp (i.e. we're generating a bootstrap
Ninja
file). This is to break
297
// the circular dependence that occurs when the builder requires a new
Ninja
298
// file to be built, but building a new
ninja
file requires the builder to
387
// minibp (i.e. we're generating a bootstrap
Ninja
file). This is to break
388
// the circular dependence that occurs when the builder requires a new
Ninja
389
// file to be built, but building a new
ninja
file requires the builder to
597
// for each source file, which will cause
Ninja
to treat it as dirty if its
634
// build.
ninja
file
[
all
...]
config.go
20
// that their values can be easily replaced in the generated
Ninja
file.
33
// creating a build.
ninja
.in file to be used in a build bootstrapping
37
// creating a build.
ninja
.in file to be used to build the primary builder
43
// .ninja_log but not the output build.
ninja
file should be deleted.
cleanup.go
31
// removeAbandonedFiles removes any files that appear in the
Ninja
log that are
88
// Check that the first line indicates that this is a
Ninja
log version 5
89
const expectedFirstLine = "#
ninja
log v5"
91
return nil, errors.New("unrecognized
ninja
log format")
137
fmt.Printf("removed old
ninja
-created file %s because it has no rule to generate it\n", path)
command.go
45
flag.StringVar(&outFile, "o", "build.
ninja
.in", "the
Ninja
file to output")
105
// Add extra
ninja
file dependencies
130
fatalf("error generating
Ninja
file contents: %s", err)
/external/compiler-rt/lib/tsan/
check_cmake.sh
11
CC=clang CXX=clang++ cmake -G
Ninja
-DLLVM_ENABLE_WERROR=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=ON $ROOT/../../../..
13
ninja
14
ninja
check-sanitizer
15
ninja
check-tsan
16
ninja
check-asan
17
ninja
check-msan
18
ninja
check-lsan
/external/llvm/bindings/go/
build.sh
15
if test -n "`which
ninja
`" ; then
16
# If
Ninja
is available, we can speed up the build by building only the
18
(cd $llvm_builddir && cmake -G
Ninja
$cmake_flags)
19
ninja
-C $llvm_builddir llvm-config llvm-go
22
ninja
-C $llvm_builddir $llvm_buildtargets FileCheck
/build/blueprint/
ninja_defs.go
25
// A Deps value indicates the dependency file format that
Ninja
should expect to
48
// A PoolParams object contains the set of parameters that make up a
Ninja
pool
52
Depth int // The
Ninja
pool depth.
55
// A RuleParams object contains the set of parameters that make up a
Ninja
rule
58
// These fields correspond to a
Ninja
variable of the same name.
59
Command string // The command that
Ninja
will run for the rule.
62
Description string // The description that
Ninja
will print for the rule.
63
Generator bool // Whether the rule generates the
Ninja
manifest file.
64
Pool Pool // The
Ninja
pool to which the rule belongs.
65
Restat bool // Whether
Ninja
should re-stat the rule's outputs
[
all
...]
package_ctx.go
26
// A PackageContext provides a way to create package-scoped
Ninja
pools,
29
// scoped
Ninja
object definitions. This PackageContext object should then be
30
// passed to all calls to define module- or singleton-specific
Ninja
181
// pkgPathToName makes a
Ninja
-friendly name out of a Go package name by
192
// Import enables access to the exported
Ninja
pools, rules, and variables
198
// imported variables may then be accessed from
Ninja
strings as
222
// Note that the local name used to refer to the package in
Ninja
variable names
273
// represents a
Ninja
variable that will be output. The name argument should
275
//
Ninja
variables that are visible within the calling Go package.
330
// represents a
Ninja
variable that will be output. The name argument shoul
[
all
...]
singleton_ctx.go
42
// SetNinjaBuildDir sets the value of the top-level "builddir"
Ninja
variable
43
// that controls where
Ninja
stores its build log files. This value can be
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.
ninja_strings.go
79
// parseNinjaString parses an unescaped
ninja
string (i.e. all $<something>
302
return fmt.Errorf("%q contains an invalid
Ninja
name character "+
349
return fmt.Errorf("%q conflicts with
Ninja
built-in", argName)
doc.go
16
// modules that need to be built, and produces a
Ninja
17
// (http://martine.github.io/
ninja
/) manifest describing the commands that need
module_ctx.go
23
// A Module handles generating all of the
Ninja
build actions needed to build a
40
// This ModuleContext is also used to create
Ninja
build actions and to report
88
// during its generate phase. This call should generate all
Ninja
build
context.go
43
// and generate a
Ninja
file. The process of generating a
Ninja
file proceeds
64
// write phase generates the
Ninja
manifest text based on the generated build
94
ninjaBuildDir *ninjaString // The builddir special
Ninja
variable
265
// included in the generated
Ninja
file for debugging purposes.
336
// be included in the generated
Ninja
file for debugging purposes.
[
all
...]
/build/soong/common/
defs.go
28
// A phony rule that is not the built-in
Ninja
phony rule. The built-in
30
//
Ninja
docs for more details.
/build/core/
ninja.mk
0
NINJA
?= prebuilts/
ninja
/$(HOST_PREBUILT_TAG)/
ninja
14
KATI_OUTPUT_PATTERNS := $(OUT_DIR)/build%.
ninja
$(OUT_DIR)/
ninja
%.sh
16
# Modifier goals we don't need to pass to
Ninja
.
75
# Goals we need to pass to
Ninja
.
103
KATI_BUILD_NINJA := $(OUT_DIR)/build$(KATI_NINJA_SUFFIX).
ninja
123
#
Ninja
runs remote jobs (i.e., commands which contain gomacc) with
129
NINJA_MAKEPARALLEL := $(MAKEPARALLEL) --
ninja
[
all
...]
config.mk
646
# Force gcc to always output color diagnostics.
Ninja
will strip the ANSI
684
# doesn't change every time, which would cause
ninja
to rebuild
[
all
...]
/build/soong/cc/
clang.go
86
// Force clang to always output color diagnostics.
Ninja
will strip the ANSI
/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.
/external/llvm/utils/release/
build_llvm_package.bat
11
REM Visual Studio 2013, CMake,
Ninja
, SVN, GNUWin32,
55
ninja
all || exit /b
56
ninja
check || exit /b
57
ninja
check-clang || exit /b
65
ninja
all || exit /b
66
ninja
check || exit /b
67
ninja
check-clang || exit /b
69
ninja
package || exit /b
79
ninja
all || exit /b
80
ninja
check || exit /b
[
all
...]
Completed in 3653 milliseconds