2015-04-21 15:31:59 +00:00
|
|
|
#!/bin/bash
|
|
|
|
###############################################################################
|
|
|
|
# Copyright 2015 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# ios_run_skia: starts the correct skia program on the device, prints the
|
|
|
|
# output, and kills the app if interrupted.
|
|
|
|
|
2015-05-05 14:55:06 +00:00
|
|
|
set -x -e
|
|
|
|
|
2015-04-21 15:31:59 +00:00
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
source $SCRIPT_DIR/ios_setup.sh
|
|
|
|
|
2015-05-05 14:55:06 +00:00
|
|
|
# Run the application.
|
|
|
|
IOS_DEPLOY_ARGS="${SKIA_SRC_DIR}/xcodebuild/${BUILDTYPE}-iphoneos/iOSShell.app --args \"${*}\""
|
|
|
|
CMD="ios-deploy -I -m -b ${IOS_DEPLOY_ARGS}"
|
|
|
|
eval $CMD
|