| # Copyright 2018 Google Inc. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| if [ "$(uname)" = Linux ]; then |
| EXAMPLE='/opt/google/chrome/chrome' |
| elif [ "$(uname)" = Darwin ]; then |
| EXAMPLE='"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"' |
| EXAMPLE='"/c/Program Files (x86)/Google/Chrome/Application/chrome.exe"' |
| if [ $# -lt 3 ] || ! [ -x "$1" ]; then |
| $0 CHROMIUM_BINARY SOURCE_URL DESTINATION_DIRECTORY |
| $0 CHROMIUM_BINARY SOURCE_URL DESTINATION_DIRECTORY OPTIONAL_WAIT_TIME # 5 second sleep before capture |
| $0 $EXAMPLE https://www.google.com/ /tmp/ |
| $0 $EXAMPLE https://www.google.com/ /tmp/ 5 |
| SLP=${4:-0} # sleep in seconds before capture. 4th param iff provided, else 0. |
| CRASH=~/tmp/headless_crash_dumps |
| (sleep $SLP; printf 'chrome.gpuBenchmarking.printToSkPicture("%s");\nquit\n' "$DST") | \ |
| "$EXE" --headless --disable-gpu --repl -crash-dumps-dir="$CRASH" \ |
| --no-sandbox --enable-gpu-benchmarking "$URL" |