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

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: 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
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..6b1b4d77e9c8bea104388d5857e7254dc0662d45 100755
--- a/platform_tools/ios/bin/ios_ninja
+++ b/platform_tools/ios/bin/ios_ninja
@@ -9,12 +9,14 @@
#
# Build the skia for ios. This assumes that GYP_DEFINES has been set.
#
+set -x
borenet 2015/05/05 12:59:02 I think we should add "set -e" to all of these scr
stephana-chromium 2015/05/05 13:30:25 Done.
+
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source $SCRIPT_DIR/ios_setup.sh
-pushd
+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

Powered by Google App Engine
This is Rietveld 408576698