Lines Matching +full:ninja +full:- +full:build
1 if [ ! "${BLUEPRINT_BOOTSTRAP_VERSION}" -eq "2" ]; then
8 if [ -z "$BLUEPRINT_LIST_FILE" ]; then
12 mkdir -p "$(dirname ${OUR_LIST_FILE})"
14 find . -mindepth 1 -type d \( -name ".*" -o -execdir test -e {}/.out-dir \; \) -prune \
15 -o -name $TOPNAME -print | sort) >"${TEMP_LIST_FILE}"
16 if cmp -s "${OUR_LIST_FILE}" "${TEMP_LIST_FILE}"; then
33 # Build the bootstrap build.ninja
34 "${NINJA}" -w dupbuild=err -f "${BUILDDIR}/.minibootstrap/build.ninja"
36 # Build the primary builder and the main build.ninja
37 "${NINJA}" -w dupbuild=err -f "${BUILDDIR}/.bootstrap/build.ninja"
39 # SKIP_NINJA can be used by wrappers that wish to run ninja themselves.
40 if [ -z "$SKIP_NINJA" ]; then
41 "${NINJA}" -w dupbuild=err -f "${BUILDDIR}/build.ninja" "$@"