HomeSort by relevance Sort by last modified time
    Searched refs:ninja (Results 1 - 25 of 41) sorted by null

1 2

  /build/kati/testcase/
ninja_phony_targets.sh 22 rm -f build.ninja .kati_stamp ninja.sh
24 if [ -e ninja.sh ]; then ./ninja.sh -j1 $@; fi
ninja_mkdir.sh 31 if [ -e ninja.sh ]; then
32 ./ninja.sh
37 if [ -e ninja.sh ]; then
38 if grep -q "mkdir -p" build.ninja; then
39 echo "Should not include 'mkdir -p' in build.ninja"
40 echo "Ninja will automatically create this directory"
ninja_regen.sh 36 if [ -e ninja.sh ]; then
37 ./ninja.sh
52 if [ -e ninja.sh ]; then
56 ./ninja.sh
61 if [ -e ninja.sh ]; then
65 ./ninja.sh
70 if [ -e ninja.sh ]; then
74 ./ninja.sh
79 if [ -e ninja.sh ]; then
83 ./ninja.s
    [all...]
find_command_sorted.mk 1 # TODO(ninja): This test is only for ckati. ninja: fix $(sort $(shell $(1)))
3 # ninja: $(sort $(shell "find .")) becomes "$( .) find"
override_export.mk 1 # TODO(c|ninja): it overrides "export A" and exports(?) "override B"
2 # ninja: can't export variable with space in name (by bash).
ninja_regen_find_link.sh 31 if [ -e ninja.sh ]; then ./ninja.sh -j1 $@; fi
  /build/blueprint/
.travis.install-ninja.sh 3 # Version of ninja to build -- can be any git revision
15 git clone https://github.com/martine/ninja
16 cd ninja
20 rm -f ../ninjabin/ninja
22 mv ninja ../ninjabin/
blueprint.bash 3 # This script is intented to wrap the execution of ninja so that we
4 # can do some checks before each ninja run.
35 # ninja will do when switching stages. So just skip to ninja.
39 # Pick the newer of .bootstrap/bootstrap.ninja.in or $BOOTSTRAP_MANIFEST,
40 # and copy it to .bootstrap/build.ninja.in
41 GEN_BOOTSTRAP_MANIFEST="${BUILDDIR}/.bootstrap/bootstrap.ninja.in"
48 # Copy the selected manifest to $BUILDDIR/.bootstrap/build.ninja.in
50 cp "${BOOTSTRAP_MANIFEST}" "${BUILDDIR}/.bootstrap/build.ninja.in"
52 # Bootstrap it to $BUILDDIR/build.ninja
    [all...]
  /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/skia/platform_tools/android/bin/
android_make 15 GYP_GENERATORS=ninja-android "${SKIA_SRC_DIR}/gyp_skia"
16 ninja -C $SKIA_OUT/$BUILDTYPE ${APP_ARGS[@]}
android_ninja 15 GYP_GENERATORS=ninja-android "${SKIA_SRC_DIR}/gyp_skia"
16 ninja -C $SKIA_OUT/$BUILDTYPE ${APP_ARGS[@]}
  /external/v8/tools/gyp/test/win/
gyptest-link-pgo.py 17 test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
29 if test.format == 'ninja':
30 ninja = test.built_file_path('obj/test_pgo_instrument.ninja', chdir=CHDIR) variable
31 test.must_contain(ninja, '/LTCG:PGINSTRUMENT')
32 test.must_contain(ninja, 'test_pgo.pgd')
33 ninja = test.built_file_path('obj/test_pgo_optimize.ninja', chdir=CHDIR) variable
34 test.must_contain(ninja, '/LTCG:PGOPTIMIZE')
35 test.must_contain(ninja, 'test_pgo.pgd'
36 ninja = test.built_file_path('obj\/test_pgo_update.ninja', chdir=CHDIR) variable
    [all...]
gyptest-cl-function-level-linking.py 16 test = TestGyp.TestGyp(formats=['msvs', 'ninja'])
32 sep = '.' if test.format == 'ninja' else '\\'
  /prebuilts/ninja/darwin-x86/
build-ninja.sh 2 # Download & build ninja on the local machine
4 # leaves output in /tmp/prebuilts/ninja/$OS-x86/
6 PROJ=ninja
16 # ninja specific steps
18 git clone https://android.googlesource.com/platform/external/ninja.git src
20 git remote add upstream https://github.com/martine/ninja.git
30 cp $RD/src/ninja $INSTALL
  /prebuilts/ninja/linux-x86/
build-ninja.sh 2 # Download & build ninja on the local machine
4 # leaves output in /tmp/prebuilts/ninja/$OS-x86/
6 PROJ=ninja
16 # ninja specific steps
18 git clone https://android.googlesource.com/platform/external/ninja.git src
20 git remote add upstream https://github.com/martine/ninja.git
30 cp $RD/src/ninja $INSTALL
  /build/kati/
m2n 17 # A wrapper for kati which generates build.ninja mainly for Android.
45 echo ninja.sh and build.ninja were generated, please run ./ninja.sh
117 ${kati} --ninja ${ninja_suffix_flag} --ignore_optional_include=out/%.P --ignore_dirty=out/% --use_find_emulator --detect_android_echo --detect_depfiles --gen_all_targets ${goma_flag} ${extra_flags} ${targets}
120 echo ninja${ninja_suffix}.sh and build${ninja_suffix}.ninja were generated, please run ./ninja${ninja_suffix}.sh
  /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
  /external/v8/tools/gyp/pylib/gyp/generator/
ninja_test.py 7 """ Unit tests for the ninja.py file. """
9 import gyp.generator.ninja as ninja namespace
21 writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'build.ninja', '.',
22 'build.ninja', 'win')
32 writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'build.ninja', '.',
33 'build.ninja', 'linux')
  /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...]
  /external/skia/cmake/
cmake_build 31 $here/../third_party/externals/cmake/bin/cmake -DCMAKE_BUILD_TYPE=$BUILDTYPE $here -G Ninja
32 ninja
  /build/blueprint/tests/
test.sh 11 # Run ninja, filter the output, and compare against expectations
16 if ! ninja -v -d explain >log_$1 2>&1; then
56 # The 2 second sleeps are needed until ninja understands sub-second timestamps
57 # https://github.com/martine/ninja/issues/371
73 # This test will cause the source build.ninja.in to be copied into the first
76 touch ../build.ninja.in
79 # From now on, we're going to be modifying the build.ninja.in, so let's make our
88 # build.ninja.in, so that we'll restart into the new version created by the
91 echo "# test" >>src.build.ninja.in
107 # Restart testing using the wrapper instead of going straight to ninja. Thi
    [all...]
  /external/skia/bin/
c 17 ninja -C out/Release nanobench
23 ninja -C out/Release nanobench
  /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/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...]
  /external/v8/tools/vim/
ninja-build.vim 5 " Adds a "Compile this file" function, using ninja. On Mac, binds Cmd-k to
9 " Adds a "Build this target" function, using ninja. This is not bound
14 " Requires that gyp has already generated build.ninja files, and that ninja is
16 " Bumps the number of parallel jobs in ninja automatically if goma is
20 " so /path/to/src/tools/vim/ninja-build.vim
50 sys.path.append(os.path.join(v8_root, 'tools', 'ninja'))
60 build_cmd = ' '.join(['ninja'] + flags + ['-C', build_dir, targets])
68 # ninja needs filepaths for the ^ syntax to be relative to the

Completed in 2210 milliseconds

1 2