| 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 # The purpose of this file and others in this directory is to simulate | 5 # The purpose of this file and others in this directory is to simulate |
| 6 # the Chromium build enviroment. This file is included in all GYP | 6 # the Chromium build enviroment. This file is included in all GYP |
| 7 # files that are used by the Dart project. This includes V8's GYP | 7 # files that are used by the Dart project. |
| 8 # files. | |
| 9 | 8 |
| 10 # READ BEFORE EDITING: | 9 # READ BEFORE EDITING: |
| 11 # Do not add Dart VM specific configuration to this file. Instead, | 10 # Do not add Dart VM specific configuration to this file. Instead, |
| 12 # modify runtime/tools/gyp/runtime-configurations.gypi. | 11 # modify runtime/tools/gyp/runtime-configurations.gypi. |
| 13 | 12 |
| 14 { | 13 { |
| 15 'variables': { | 14 'variables': { |
| 16 'xcode_gcc_version%': '<!(python <(DEPTH)/tools/gyp/find_mac_gcc_version.py)
', | 15 'xcode_gcc_version%': '<!(python <(DEPTH)/tools/gyp/find_mac_gcc_version.py)
', |
| 17 }, | 16 }, |
| 18 'target_defaults': { | 17 'target_defaults': { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'GCC_CW_ASM_SYNTAX': 'NO', # Remove -fasm-blocks. | 49 'GCC_CW_ASM_SYNTAX': 'NO', # Remove -fasm-blocks. |
| 51 | 50 |
| 52 'GCC_ENABLE_PASCAL_STRINGS': 'NO', | 51 'GCC_ENABLE_PASCAL_STRINGS': 'NO', |
| 53 'GCC_ENABLE_TRIGRAPHS': 'NO', | 52 'GCC_ENABLE_TRIGRAPHS': 'NO', |
| 54 'COMBINE_HIDPI_IMAGES': 'YES', | 53 'COMBINE_HIDPI_IMAGES': 'YES', |
| 55 }, | 54 }, |
| 56 }, | 55 }, |
| 57 }, | 56 }, |
| 58 }, | 57 }, |
| 59 } | 58 } |
| OLD | NEW |