/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/chromium_org/third_party/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/chromium_org/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 '\\'
|
/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/chromium_org/third_party/webrtc/build/ |
ios-webrtc.sh | 16 export GYP_GENERATORS="ninja" 23 ninja -C out/Debug || { echo "@@@STEP_FAILURE@@@"; exit 2; }
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
ninja_test.py | 7 """ Unit tests for the ninja.py file. """ 9 import gyp.generator.ninja as ninja namespace 18 writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'build.ninja', '.', 19 'build.ninja', 'win') 29 writer = ninja.NinjaWriter('foo', 'wee', '.', '.', 'build.ninja', '.', 30 'build.ninja', 'linux')
|
ninja.py | 34 # system to the appropriate locations. Ninja prefers paths to be 38 # ninja/shell variable) that are passed to gyp here but expanded 39 # before writing out into the target .ninja files; see 96 """Takes a preprocessor define and returns a -D parameter that's ninja- and 191 # A small discourse on paths as used within the Ninja build: 202 # All paths as written into the .ninja files are relative to the build 203 # directory. Call these paths "ninja paths". 209 # into the equivalent ninja path. 211 # - GypPathToUniqueOutput translates a gyp path into a ninja path to write 230 self.ninja = ninja_syntax.Writer(output_file [all...] |
/external/chromium_org/third_party/skia/tools/ |
install_dependencies.sh | 27 ninja-build
|
coverage.sh | 18 ninja -C out/Coverage
|
/external/skia/tools/ |
install_dependencies.sh | 27 ninja-build
|
coverage.sh | 18 ninja -C out/Coverage
|
/external/chromium_org/third_party/skia/experimental/webtry/setup/ |
continue_install | 55 GYP_GENERATORS=ninja ./gyp_skia gyp/webtry.gyp gyp/most.gyp -Dskia_gpu=0 56 ninja -C out/Debug webtry
|
/external/skia/experimental/webtry/setup/ |
continue_install | 54 GYP_GENERATORS=ninja ./gyp_skia gyp/webtry.gyp gyp/most.gyp -Dskia_gpu=0 55 ninja -C out/Debug webtry
|
/external/chromium_org/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 13 " Requires that gyp has already generated build.ninja files, and that ninja is 17 " so /path/to/src/tools/vim/ninja-build.vim 45 """Default to the configuration with either a newer build.ninja or a newer 59 if is_release_15s_newer('build.ninja') or is_release_15s_newer('protoc'): 69 # ninja needs filepaths for the ^ syntax to be relative to the 74 build_cmd = ' '.join(['ninja', '-C', build_dir, file_to_build + '^']) 84 build_cmd = ' '.join(['ninja', '-C', build_dir, targets] [all...] |
/external/chromium_org/third_party/skia/platform_tools/chromeos/bin/ |
chromeos_setup.sh | 52 exportVar GYP_GENERATORS "ninja"
|
/external/skia/platform_tools/chromeos/bin/ |
chromeos_setup.sh | 52 exportVar GYP_GENERATORS "ninja"
|
/external/chromium_org/tools/clang/scripts/ |
update.sh | 220 # Check that cmake and ninja are available. 225 if ! which ninja > /dev/null; then 226 echo "ninja needed to build clang, please install" 371 ninja 373 ninja check-all 376 ninja install 454 ninja 480 ninja 524 ninja clang_rt.asan-arm-android 554 ninja -C "${TOOL_BUILD_DIR}" instal [all...] |
/external/chromium_org/third_party/skia/ |
Makefile | 2 # Uses "ninja" to build the code. 40 # TODO(epoger): I'm not sure if the above comment is still valid in a ninja 66 # Targets that ninja builds at this Makefile's behest should not be affected. 96 ninja -C $(SKIA_OUT)/$(BUILDTYPE) $@
|
/external/chromium_org/third_party/skia/platform_tools/barelinux/bin/ |
barelinux_make | 67 export GYP_GENERATORS="ninja" 82 ninja -C "${SKIA_OUT}/${BUILD_TYPE}"
|
/external/skia/ |
Makefile | 2 # Uses "ninja" to build the code. 40 # TODO(epoger): I'm not sure if the above comment is still valid in a ninja 67 # Targets that ninja builds at this Makefile's behest should not be affected. 97 ninja -C $(SKIA_OUT)/$(BUILDTYPE) $@
|
/external/skia/platform_tools/barelinux/bin/ |
barelinux_make | 67 export GYP_GENERATORS="ninja" 82 ninja -C "${SKIA_OUT}/${BUILD_TYPE}"
|
/external/chromium_org/mojo/tools/ |
mojob.sh | 51 ninja -j 1000 -C "out/$1" mojo || exit 1 53 ninja -C "out/$1" mojo || exit 1
|