OLD | NEW |
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 'common_gcc_warning_flags': [ | 7 'common_gcc_warning_flags': [ |
8 '-Wall', | 8 '-Wall', |
9 '-Wextra', # Also known as -W. | 9 '-Wextra', # Also known as -W. |
10 '-Wno-unused-parameter', | 10 '-Wno-unused-parameter', |
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
166 'inherit_from': [ | 166 'inherit_from': [ |
167 'Dart_Base', 'Dart_simmips_Base', 'Dart_Release', | 167 'Dart_Base', 'Dart_simmips_Base', 'Dart_Release', |
168 'Dart_<(dart_target_os)_Base', | 168 'Dart_<(dart_target_os)_Base', |
169 'Dart_<(dart_target_os)_simmips_Base', | 169 'Dart_<(dart_target_os)_simmips_Base', |
170 'Dart_<(dart_target_os)_Release', | 170 'Dart_<(dart_target_os)_Release', |
171 ], | 171 ], |
172 }, | 172 }, |
173 | 173 |
174 | 174 |
175 # ARM and MIPS hardware configurations are only for Linux and Android. | 175 # ARM and MIPS hardware configurations are only for Linux and Android. |
| 176 'DebugXARM': { |
| 177 'inherit_from': [ |
| 178 'Dart_Base', 'Dart_arm_Base', 'Dart_Debug', |
| 179 'Dart_Linux_Base', |
| 180 'Dart_Linux_xarm_Base', |
| 181 'Dart_Linux_Debug', |
| 182 ], |
| 183 }, |
| 184 |
| 185 'ReleaseXARM': { |
| 186 'inherit_from': [ |
| 187 'Dart_Base', 'Dart_arm_Base', 'Dart_Release', |
| 188 'Dart_Linux_Base', |
| 189 'Dart_Linux_xarm_Base', |
| 190 'Dart_Linux_Release', |
| 191 ], |
| 192 }, |
| 193 |
176 'DebugARM': { | 194 'DebugARM': { |
177 'inherit_from': [ | 195 'inherit_from': [ |
178 'Dart_Base', 'Dart_arm_Base', 'Dart_Debug', | 196 'Dart_Base', 'Dart_arm_Base', 'Dart_Debug', |
179 'Dart_Linux_Base', | 197 'Dart_Linux_Base', |
180 'Dart_Linux_arm_Base', | 198 'Dart_Linux_arm_Base', |
181 'Dart_Linux_Debug', | 199 'Dart_Linux_Debug', |
182 ], | 200 ], |
183 }, | 201 }, |
184 | 202 |
185 'ReleaseARM': { | 203 'ReleaseARM': { |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 'Debug': { | 291 'Debug': { |
274 'inherit_from': ['Debug<(chrome_target_os)<(dart_target_arch)'] | 292 'inherit_from': ['Debug<(chrome_target_os)<(dart_target_arch)'] |
275 }, | 293 }, |
276 | 294 |
277 'Release': { | 295 'Release': { |
278 'inherit_from': ['Release<(chrome_target_os)<(dart_target_arch)'] | 296 'inherit_from': ['Release<(chrome_target_os)<(dart_target_arch)'] |
279 }, | 297 }, |
280 }, | 298 }, |
281 }, | 299 }, |
282 } | 300 } |
OLD | NEW |