2013-04-29 12:09:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2013-09-30 17:32:09 +00:00
|
|
|
# Fail-fast if anything in the script fails.
|
|
|
|
set -e
|
2013-08-20 12:22:57 +00:00
|
|
|
|
2013-09-30 17:32:09 +00:00
|
|
|
# Remove any existing .android_config file before running android_setup. If we
|
|
|
|
# did not remove this now then we would build for whatever device type was
|
2013-08-20 12:22:57 +00:00
|
|
|
# listed in the .android_config instead of the default device type.
|
2013-09-30 17:32:09 +00:00
|
|
|
rm -f .android_config
|
2013-04-29 12:09:31 +00:00
|
|
|
|
2013-09-30 17:32:09 +00:00
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2013-09-30 17:22:48 +00:00
|
|
|
source $SCRIPT_DIR/android_setup.sh
|
|
|
|
|
2013-09-30 17:32:09 +00:00
|
|
|
if [ $(basename $0) = "android_make" ]; then
|
|
|
|
GYP_GENERATORS=make-android make $APP_ARGS
|
|
|
|
else
|
|
|
|
GYP_GENERATORS=ninja ./gyp_skia
|
|
|
|
OUT=$SKIA_OUT/${BUILDTYPE-Debug} # Defaults to Debug if BUILDTYPE isn't set.
|
|
|
|
ninja -C $OUT $APP_ARGS
|
|
|
|
ln -sf lib $OUT/lib.target # android_run_skia looks in lib.target; ninja writes to lib.
|
2013-09-30 17:22:48 +00:00
|
|
|
fi
|
|
|
|
|
2013-09-30 17:32:09 +00:00
|
|
|
# Write the device id into the .android_config file. This tells
|
|
|
|
# android_run_skia the last build we completed.
|
|
|
|
echo $DEVICE_ID > .android_config
|
|
|
|
|