summaryrefslogtreecommitdiff
path: root/chromium/docs/website/site/developers/how-tos/-quickly-building-for-cros-arm-x64/goma-ninja
blob: 2393346ff1fc0a14173f95c61932a0eb3d3bdb85 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

export PATH="/home/fischman/src/goma:$PATH"
# AMI: per http://go/g-d/msg/goma-users/iqAEq3IBLk8/K0gOhNxLxVoJ
if [ -n "$GOMA_IMPLICIT_INPUT_FILES" ]; then
  GOMA_IMPLICIT_INPUT_FILES="$GOMA_IMPLICIT_INPUT_FILES,"
fi
export GOMA_IMPLICIT_INPUT_FILES="${GOMA_IMPLICIT_INPUT_FILES}$(dirname $(realpath $0))/src/build/common.gypi"

{ ~/src/goma/goma_ctl.sh status || ~/src/goma/goma_ctl.sh start; } && $(dirname $0)/ninja -j5000 "$@"