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 '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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 ], | 92 ], |
93 }, | 93 }, |
94 | 94 |
95 'Dart_simarm_Base': { | 95 'Dart_simarm_Base': { |
96 'abstract': 1, | 96 'abstract': 1, |
97 'xcode_settings': { | 97 'xcode_settings': { |
98 'ARCHS': [ 'i386' ], | 98 'ARCHS': [ 'i386' ], |
99 }, | 99 }, |
100 }, | 100 }, |
101 | 101 |
| 102 'Dart_simmips_Base': { |
| 103 'abstract': 1, |
| 104 'xcode_settings': { |
| 105 'ARCHS': [ 'i386' ], |
| 106 }, |
| 107 }, |
| 108 |
102 'Dart_Release': { | 109 'Dart_Release': { |
103 'abstract': 1, | 110 'abstract': 1, |
104 'xcode_settings': { | 111 'xcode_settings': { |
105 'GCC_OPTIMIZATION_LEVEL': '3', | 112 'GCC_OPTIMIZATION_LEVEL': '3', |
106 }, | 113 }, |
107 }, | 114 }, |
108 }, | 115 }, |
109 }, | 116 }, |
110 } | 117 } |
OLD | NEW |