blob: da8bc4f303fef99a909f54d8612351b7c4abc732 [file]
#!/bin/bash
# fiddle_ninja simply builds the provided fiddle into the
# local skia tree's out/Release_Developer directory.
#
# This script must be run after fiddle_gyp
[ -z $SKIA_ROOT ] && SKIA_ROOT="/skia_build/skia"
PATH=$PATH:/skia_build/depot_tools
if [ "$(uname)" == "Linux" ]; then
TARGETS="$1 fiddle_secwrap"
else
TARGETS="$1"
fi
ninja -C $SKIA_ROOT/out/Release_Developer $TARGETS