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

Unified Diff: tools/gyp/configurations.gypi

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/gn.py ('k') | tools/gyp/configurations_make.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/configurations.gypi
diff --git a/tools/gyp/configurations.gypi b/tools/gyp/configurations.gypi
index 77d05b331bbf325938cf102631563380533812f2..3d02bc669902bc1f15b6608693522c2c34d68551 100644
--- a/tools/gyp/configurations.gypi
+++ b/tools/gyp/configurations.gypi
@@ -24,8 +24,6 @@
['"<(target_arch)"=="simarmv6"', { 'dart_target_arch': 'SIMARMV6', }],
['"<(target_arch)"=="simarmv5te"', { 'dart_target_arch': 'SIMARMV5TE', }],
['"<(target_arch)"=="simarm64"', { 'dart_target_arch': 'SIMARM64', }],
- ['"<(target_arch)"=="mips"', { 'dart_target_arch': 'MIPS', }],
- ['"<(target_arch)"=="simmips"', { 'dart_target_arch': 'SIMMIPS', }],
['"<(target_arch)"=="simdbc"', { 'dart_target_arch': 'SIMDBC', }],
['"<(target_arch)"=="simdbc64"', { 'dart_target_arch': 'SIMDBC64', }],
[ 'OS=="linux"', { 'dart_target_os': 'Linux', } ],
@@ -120,20 +118,6 @@
],
},
- 'Dart_simmips_Base': {
- 'abstract': 1,
- 'defines': [
- 'TARGET_ARCH_MIPS',
- ]
- },
-
- 'Dart_mips_Base': {
- 'abstract': 1,
- 'defines': [
- 'TARGET_ARCH_MIPS',
- ],
- },
-
'Dart_simdbc_Base': {
'abstract': 1,
'defines': [
@@ -336,36 +320,6 @@
],
},
- 'DebugSIMMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_simmips_Base', 'Dart_Debug',
- 'Dart_<(dart_target_os)_Base',
- 'Dart_<(dart_target_os)_simmips_Base',
- 'Dart_<(dart_target_os)_Debug',
- ],
- 'defines': [
- 'DEBUG',
- ],
- },
-
- 'ReleaseSIMMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_simmips_Base', 'Dart_Release',
- 'Dart_<(dart_target_os)_Base',
- 'Dart_<(dart_target_os)_simmips_Base',
- 'Dart_<(dart_target_os)_Release',
- ],
- },
-
- 'ProductSIMMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_simmips_Base', 'Dart_Product',
- 'Dart_<(dart_target_os)_Base',
- 'Dart_<(dart_target_os)_simmips_Base',
- 'Dart_<(dart_target_os)_Product',
- ],
- },
-
'DebugSIMDBC': {
'inherit_from': [
'Dart_Base', 'Dart_simdbc_Base', 'Dart_Debug',
@@ -458,7 +412,7 @@
],
},
- # ARM and MIPS hardware configurations are only for Linux and Android.
+ # ARM hardware configurations are only for Linux and Android.
'DebugXARM': {
'inherit_from': [
'Dart_Base', 'Dart_arm_Base', 'Dart_Debug',
@@ -675,62 +629,6 @@
],
},
- 'DebugXMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_mips_Base', 'Dart_Debug',
- 'Dart_Linux_Base',
- 'Dart_Linux_xmips_Base',
- 'Dart_Linux_xmips_Debug',
- 'Dart_Linux_Debug',
- ],
- },
-
- 'ReleaseXMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_mips_Base', 'Dart_Release',
- 'Dart_Linux_Base',
- 'Dart_Linux_xmips_Base',
- 'Dart_Linux_xmips_Release',
- 'Dart_Linux_Release',
- ],
- },
-
- 'ProductXMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_mips_Base', 'Dart_Product',
- 'Dart_Linux_Base',
- 'Dart_Linux_xmips_Base',
- 'Dart_Linux_Product',
- ],
- },
-
- 'DebugMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_mips_Base', 'Dart_Debug',
- 'Dart_Linux_Base',
- 'Dart_Linux_mips_Base',
- 'Dart_Linux_Debug',
- ],
- },
-
- 'ReleaseMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_mips_Base', 'Dart_Release',
- 'Dart_Linux_Base',
- 'Dart_Linux_mips_Base',
- 'Dart_Linux_Release',
- ],
- },
-
- 'ProductMIPS': {
- 'inherit_from': [
- 'Dart_Base', 'Dart_mips_Base', 'Dart_Product',
- 'Dart_Linux_Base',
- 'Dart_Linux_mips_Base',
- 'Dart_Linux_Product',
- ],
- },
-
# Android configurations. The configuration names explicitly include
# 'Android' because we are cross-building from Linux, and, when building
# the standalone VM, we cannot inspect the gyp built-in 'OS' variable to
« no previous file with comments | « tools/gn.py ('k') | tools/gyp/configurations_make.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698