| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |