Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(89)

Unified Diff: platform_tools/ios/bin/ios_ninja

Issue 1085583006: iOS platform scripts to be used by buildbots (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Removed trailing white spaces Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « platform_tools/ios/bin/ios_mount.sh ('k') | platform_tools/ios/bin/ios_path_exists » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/ios/bin/ios_ninja
diff --git a/platform_tools/ios/bin/ios_ninja b/platform_tools/ios/bin/ios_ninja
index 054f1084e922ebb0a5fb69bb2623a8650ccd9a1c..55f30bb0f37fd78b5a4df0b16895134a0b7df26a 100755
--- a/platform_tools/ios/bin/ios_ninja
+++ b/platform_tools/ios/bin/ios_ninja
@@ -7,14 +7,16 @@
# found in the LICENSE file.
###############################################################################
#
-# Build the skia for ios. This assumes that GYP_DEFINES has been set.
+# Build the skia for ios. This assumes that GYP_DEFINES has been set.
#
+set -x -e
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $SCRIPT_DIR/ios_setup.sh
-pushd
-cd ${SKIA_SRC_DIR}
+OLD_DIR=`pwd`
+cd ${SKIA_SRC_DIR}
"${SKIA_SRC_DIR}/gyp_skia"
xcodebuild -project "$SKIA_SRC_DIR/out/gyp/iOSShell.xcodeproj"\
-configuration "$BUILDTYPE"
-popd
+cd $OLD_DIR
« no previous file with comments | « platform_tools/ios/bin/ios_mount.sh ('k') | platform_tools/ios/bin/ios_path_exists » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698