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

Side by Side Diff: runtime/tools/gyp/runtime-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 unified diff | Download patch
« no previous file with comments | « runtime/tools/benchmark.py ('k') | runtime/vm/assembler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'dart_debug_optimization_level%': '2', 7 'dart_debug_optimization_level%': '2',
8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi, 8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi,
9 # then do not build the native libraries supporting dart:io. 9 # then do not build the native libraries supporting dart:io.
10 'dart_io_support%': 0, 10 'dart_io_support%': 0,
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 }, 86 },
87 }, 87 },
88 88
89 'Dart_simarmv5te_Base': { 89 'Dart_simarmv5te_Base': {
90 'abstract': 1, 90 'abstract': 1,
91 'xcode_settings': { 91 'xcode_settings': {
92 'ARCHS': [ 'i386' ], 92 'ARCHS': [ 'i386' ],
93 }, 93 },
94 }, 94 },
95 95
96 'Dart_simmips_Base': {
97 'abstract': 1,
98 'xcode_settings': {
99 'ARCHS': [ 'i386' ],
100 },
101 },
102
103 'Dart_Debug': { 96 'Dart_Debug': {
104 'abstract': 1, 97 'abstract': 1,
105 'defines': [ 98 'defines': [
106 'DEBUG', 99 'DEBUG',
107 ], 100 ],
108 'xcode_settings': { 101 'xcode_settings': {
109 'GCC_OPTIMIZATION_LEVEL': '<(dart_debug_optimization_level)', 102 'GCC_OPTIMIZATION_LEVEL': '<(dart_debug_optimization_level)',
110 }, 103 },
111 }, 104 },
112 105
(...skipping 12 matching lines...) Expand all
125 118
126 'Dart_Product' : { 119 'Dart_Product' : {
127 'abstract': 1, 120 'abstract': 1,
128 'xcode_settings': { 121 'xcode_settings': {
129 'GCC_OPTIMIZATION_LEVEL': '3', 122 'GCC_OPTIMIZATION_LEVEL': '3',
130 } 123 }
131 }, 124 },
132 }, 125 },
133 }, 126 },
134 } 127 }
OLDNEW
« no previous file with comments | « runtime/tools/benchmark.py ('k') | runtime/vm/assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698