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

Unified Diff: tools/testing/dart/compiler_configuration.dart

Issue 2858623002: Remove MIPS support (Closed)
Patch Set: Rebase Created 3 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: tools/testing/dart/compiler_configuration.dart
diff --git a/tools/testing/dart/compiler_configuration.dart b/tools/testing/dart/compiler_configuration.dart
index e63dbbb38d5390f69cb49d46509a125e5e6338d3..fe5862a8ad2f3868409abf4e2812feadd11a1eaf 100644
--- a/tools/testing/dart/compiler_configuration.dart
+++ b/tools/testing/dart/compiler_configuration.dart
@@ -721,14 +721,10 @@ class PrecompilerCompilerConfiguration extends CompilerConfiguration {
cc_flags = "-m32";
} else if (arch == 'simarm') {
cc_flags = "-m32";
- } else if (arch == 'simmips') {
- cc_flags = "-m32";
} else if (arch == 'arm') {
cc_flags = null;
} else if (arch == 'arm64') {
cc_flags = null;
- } else if (arch == 'mips') {
- cc_flags = "-EL";
} else {
throw "Architecture not supported: $arch";
}

Powered by Google App Engine
This is Rietveld 408576698