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

Unified Diff: tools/presubmit.sh

Issue 8341103: build.py will not accept --arch=dartc soon, so removing references and uses of --arch=dartc in th... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 2 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: tools/presubmit.sh
===================================================================
--- tools/presubmit.sh (revision 881)
+++ tools/presubmit.sh (working copy)
@@ -92,12 +92,12 @@
echo
echo "--- Building compiler ---"
-doBuild compiler dartc debug
+doBuild compiler ia32 debug
if [ ${DO_OPTIMIZE} == 1 ] ; then
# echo "Syncing compiler debug build to release"
- # rsync -a out/Debug_dartc out/Release_dartc
- doBuild compiler dartc release
+ # rsync -a out/Debug_ia32 out/Release_ia32
+ doBuild compiler ia32 release
fi
# TODO(zundel): Potential shortcut: don't rebuild all of dartc again.
@@ -106,12 +106,12 @@
# Build in client dir
echo
echo "--- Building client ---"
-doBuild client dartc debug
+doBuild client ia32 debug
if [ ${DO_OPTIMIZE} == 1 ] ; then
# echo "Syncing client debug build to release"
- # rsync -a out/Debug_dartc out/Release_dartc
- doBuild client dartc release
+ # rsync -a out/Debug_ia32 out/Release_ia32
+ doBuild client ia32 release
fi
« samples/chat/README ('K') | « tools/make_bundle.py ('k') | tools/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698