| 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 in_dartium to 0 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 we must be in Dartium, using its global files instead. | 9 # then do not build the native libraries supporting dart:io. |
| 10 'in_dartium%': 1, | 10 'dart_io_support%': 0, |
| 11 }, | 11 }, |
| 12 | 12 |
| 13 'target_defaults': { | 13 'target_defaults': { |
| 14 'configurations': { | 14 'configurations': { |
| 15 | 15 |
| 16 'Dart_Base': { | 16 'Dart_Base': { |
| 17 'abstract': 1, | 17 'abstract': 1, |
| 18 'xcode_settings': { | 18 'xcode_settings': { |
| 19 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual | 19 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual |
| 20 }, | 20 }, |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 | 60 |
| 61 'Dart_Release': { | 61 'Dart_Release': { |
| 62 'abstract': 1, | 62 'abstract': 1, |
| 63 'xcode_settings': { | 63 'xcode_settings': { |
| 64 'GCC_OPTIMIZATION_LEVEL': '3', | 64 'GCC_OPTIMIZATION_LEVEL': '3', |
| 65 }, | 65 }, |
| 66 }, | 66 }, |
| 67 }, | 67 }, |
| 68 }, | 68 }, |
| 69 } | 69 } |
| OLD | NEW |