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