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

1 2 3 4 5 6 7 8 91011>>

  /build/kati/testcase/
fail_ignore_error.mk 1 # TODO(go-ninja): Fix
fail_subshell_in_recipe.mk 1 # TODO(go-ninja): Fix
submake_basic.mk 1 # TODO(go|c-ninja): Fix
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"
ninja_normalized_path.mk 1 # TODO(ninja): This is tough to fix with ninja. Ninja normalizes
ninja_regen.sh 36 if [ -e ninja.sh ]; then
37 ./ninja.sh
56 if [ -e ninja.sh ]; then
60 ./ninja.sh
65 if [ -e ninja.sh ]; then
69 ./ninja.sh
74 if [ -e ninja.sh ]; then
78 ./ninja.sh
83 if [ -e ninja.sh ]; then
87 ./ninja.s
    [all...]
blank_line_before_command.mk 1 # TODO(c|go-ninja): "include: Command not found" should come before "*** [test] Error 127."
delete_on_error.mk 1 # TODO: Fix for non-ninja mode.
ninja_pool.sh 30 if [ -e ninja.sh ]; then
31 mv build.ninja kati.ninja
32 cat <<EOF > build.ninja
35 include kati.ninja
37 ./ninja.sh
39 if [ -e ninja.sh ]; then
40 if ! grep -q "pool = test_pool" kati.ninja; then
41 echo "Pool not present in build.ninja"
preserve_single_dot.mk 5 mkdir -p a # for ninja.
strip_and_shell.mk 1 # TODO(c-ninja): $(shell) in another make expression is not supported.
order_only2.mk 1 # TODO(ninja): Ninja does not believe the timestamp so this test is invalid.
ninja_regen_filefunc_read.sh 35 if [ -e ninja.sh ]; then
36 ./ninja.sh
40 if [ -e ninja.sh ]; then
44 ./ninja.sh
50 if [ -e ninja.sh ]; then
54 ./ninja.sh
58 if [ -e ninja.sh ]; then
62 ./ninja.sh
69 if [ -e ninja.sh ]; then
73 ./ninja.s
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/tests/testdata/ninja/
include.ninja 3 include sub.ninja
subninja.ninja 3 subninja sub.ninja
  /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
  /build/blueprint/tests/
test_tree_tests.sh 32 #confirm no build.ninja file is rebuilt when no change happens
35 OLDTIME_BOOTSTRAP=$(mtime .bootstrap/build.ninja)
36 OLDTIME=$(mtime build.ninja)
41 if [ ${OLDTIME} != $(mtime build.ninja) ]; then
42 echo "unnecessary build.ninja regeneration for null build" >&2
46 if [ ${OLDTIME_BOOTSTRAP} != $(mtime .bootstrap/build.ninja) ]; then
47 echo "unnecessary .bootstrap/build.ninja regeneration for null build" >&2
51 #confirm no build.ninja file is rebuilt when a new directory is created
57 if [ ${OLDTIME} != $(mtime build.ninja) ]; then
58 echo "unnecessary build.ninja regeneration for new empty directory" >&
    [all...]
  /development/vndk/tools/sourcedr/sourcedr/tests/
test_ninja.py 3 from sourcedr import ninja
10 TEST_DATA_DIR = os.path.join(TEST_DIR, 'testdata', 'ninja')
15 class MockedParser(ninja.Parser):
27 s = ninja.EvalStringBuilder().getvalue()
29 self.assertEqual('', ninja.eval_string(s, ninja.EvalEnv()))
32 s = ninja.EvalStringBuilder().append_raw('a').getvalue()
34 self.assertEqual('a', ninja.eval_string(s, ninja.EvalEnv()))
37 sb = ninja.EvalStringBuilder(
    [all...]
  /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_impl.bash 31 # Build the bootstrap build.ninja
32 "${NINJA}" -w dupbuild=err -f "${BUILDDIR}/.minibootstrap/build.ninja"
34 # Build the primary builder and the main build.ninja
35 "${NINJA}" -w dupbuild=err -f "${BUILDDIR}/.bootstrap/build.ninja"
37 # SKIP_NINJA can be used by wrappers that wish to run ninja themselves.
39 "${NINJA}" -w dupbuild=err -f "${BUILDDIR}/build.ninja" "$@"
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.
13 # NINJA
30 # NINJA should be set to the path of the ninja executable. By default, this
31 # is just "ninja", and will be looked up in $PATH.
32 [ -z "$NINJA" ] && NINJA=ninja
  /external/skia/infra/bots/assets/win_ninja/
create.py 16 URL = "https://github.com/ninja-build/ninja/releases/download/%s/ninja-win.zip"
20 subprocess.check_call(["curl", "-L", URL % VERSION, "-o", "ninja-win.zip"])
21 subprocess.check_call(["unzip", "ninja-win.zip", "-d", target_dir])
22 subprocess.check_call(["rm", "ninja-win.zip"])
  /build/kati/
.travis.yml 14 - wget https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip
15 - unzip ninja-linux.zip -d ~/bin
README.md 10 your Makefile to a ninja file.
15 Now AOSP has kati and ninja, so all you have to do is
37 % ./ninja.sh
39 You need ninja in your $PATH.
46 % ./ninja.sh -t clean
48 Note ./ninja.sh passes all parameters to ninja.
54 % ./ninja.sh cts
58 % ./ninja.sh out/host/linux-x86/bin/adb
  /build/blueprint/bootstrap/
build.ninja 1 # Included by .minibootstrap/build.ninja, which is written by bootstrap.bash
10 rule build.ninja
16 bootstrapNinja = ${bootstrapBuildDir}/.bootstrap/build.ninja
18 build ${bootstrapNinja}: build.ninja ${topFile} | ${builder}

Completed in 867 milliseconds

1 2 3 4 5 6 7 8 91011>>