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

Unified Diff: tools/build.py

Issue 192543002: - Enable automatic cross-builds across ARM and MIPS architectures. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 9 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 | « no previous file | tools/gyp/configurations.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build.py
===================================================================
--- tools/build.py (revision 33476)
+++ tools/build.py (working copy)
@@ -105,7 +105,7 @@
print ("Cross-compilation to %s is not supported on host os %s."
% (os, HOST_OS))
return False
- if not arch in ['ia32', 'arm']:
+ if not arch in ['ia32', 'arm', 'mips']:
print ("Cross-compilation to %s is not supported for architecture %s."
% (os, arch))
return False
@@ -114,9 +114,6 @@
if args == []:
print "For android builds you must specify a target, such as 'runtime'."
return False
- if 'v8' in args:
- print "The v8 target is not supported for android builds."
- return False
return True
« no previous file with comments | « no previous file | tools/gyp/configurations.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698