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

Unified Diff: tools/utils.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 | « tools/testing/dart/status_reporter.dart ('k') | utils/tests/peg/peg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/utils.py
diff --git a/tools/utils.py b/tools/utils.py
index 64a185494c3fd81e1c607c877dc7d1c8886f50a4..62b07ca20564347d2429fa65ef2779d7b0e92b25 100644
--- a/tools/utils.py
+++ b/tools/utils.py
@@ -76,8 +76,6 @@ def GuessArchitecture():
return 'arm'
elif os_id.startswith('aarch64'):
return 'arm64'
- elif os_id.startswith('mips'):
- return 'mips'
elif '64' in os_id:
return 'x64'
elif (not os_id) or (not re.match('(x|i[3-6])86', os_id) is None):
@@ -252,11 +250,9 @@ ARCH_FAMILY = {
'armv6': 'arm',
'armv5te': 'arm',
'arm64': 'arm',
- 'mips': 'mips',
'simarm': 'ia32',
'simarmv6': 'ia32',
'simarmv5te': 'ia32',
- 'simmips': 'ia32',
'simarm64': 'ia32',
'simdbc': 'ia32',
'simdbc64': 'ia32',
@@ -620,9 +616,7 @@ def CheckedInSdkExecutable():
name = 'dart.exe'
elif GuessOS() == 'linux':
arch = GuessArchitecture()
- if arch == 'mips':
- name = 'dart-mips'
- elif arch == 'arm':
+ if arch == 'arm':
name = 'dart-arm'
elif arch == 'arm64':
name = 'dart-arm64'
« no previous file with comments | « tools/testing/dart/status_reporter.dart ('k') | utils/tests/peg/peg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698