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

Unified Diff: runtime/tools/benchmark.py

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Merge and cleanup Created 3 years, 6 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 | « runtime/platform/globals.h ('k') | runtime/tools/gyp/runtime-configurations.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/tools/benchmark.py
diff --git a/runtime/tools/benchmark.py b/runtime/tools/benchmark.py
index 694b87c7bb1fb00b0ae4ad9ff6e233572a318387..b3a587fb58b997f7462841eea7444e3b50874712 100755
--- a/runtime/tools/benchmark.py
+++ b/runtime/tools/benchmark.py
@@ -54,7 +54,7 @@ def BuildOptions():
default=False, action="store_true")
result.add_option("--arch",
help='Target architectures (comma-separated).',
- metavar='[all,ia32,x64,simarm,simmips,arm,mips,dartc]',
+ metavar='[all,ia32,x64,simarm,arm,dartc]',
default=utils.GuessArchitecture())
result.add_option("--executable",
help='Virtual machine to execute.',
@@ -68,7 +68,7 @@ def BuildOptions():
def ProcessOptions(options):
if options.arch == 'all':
- options.arch = 'ia32,x64,simarm,simmips,dartc'
+ options.arch = 'ia32,x64,simarm,dartc'
if options.mode == 'all':
options.mode = 'debug,release'
options.mode = options.mode.split(',')
@@ -78,7 +78,7 @@ def ProcessOptions(options):
print "Unknown mode %s" % mode
return False
for arch in options.arch:
- if not arch in ['ia32', 'x64', 'simarm', 'simmips', 'arm', 'mips', 'dartc']:
+ if not arch in ['ia32', 'x64', 'simarm', 'arm', 'dartc']:
print "Unknown arch %s" % arch
return False
return True
« no previous file with comments | « runtime/platform/globals.h ('k') | runtime/tools/gyp/runtime-configurations.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698