6c07907eaa
BUG=skia: R=jcgregorio@google.com Review URL: https://codereview.chromium.org/656463002
12 lines
403 B
Bash
Executable File
12 lines
403 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# fiddle_run executes the build fiddle (from the local
|
|
# skia tree's out/Release directory) and places the output
|
|
# png into the inout directory so it can be seen
|
|
# outside the chroot jail and served back to the user.
|
|
|
|
[ -z $SKIA_ROOT ] && SKIA_ROOT="/skia_build/skia"
|
|
[ -z $WEBTRY_INOUT ] && WEBTRY_INOUT="/skia_build/inout"
|
|
|
|
$SKIA_ROOT/out/Release/$1 --out $WEBTRY_INOUT/$1.png "${@:2}"
|