Chromium Code Reviews| 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. This includes V8's GYP |
| 8 # files. | 8 # files. |
| 9 | 9 |
| 10 # READ BEFORE EDITING: | 10 # READ BEFORE EDITING: |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 44 # subdirectories. Without this option, vm/assert.h conflicts | 44 # subdirectories. Without this option, vm/assert.h conflicts |
| 45 # with the system header assert.h. Apple also recommend | 45 # with the system header assert.h. Apple also recommend |
| 46 # setting this to NO. | 46 # setting this to NO. |
| 47 'ALWAYS_SEARCH_USER_PATHS': 'NO', | 47 'ALWAYS_SEARCH_USER_PATHS': 'NO', |
| 48 | 48 |
| 49 # Attempt to remove compiler options that Xcode adds by default. | 49 # Attempt to remove compiler options that Xcode adds by default. |
| 50 'GCC_CW_ASM_SYNTAX': 'NO', # Remove -fasm-blocks. | 50 'GCC_CW_ASM_SYNTAX': 'NO', # Remove -fasm-blocks. |
| 51 | 51 |
| 52 'GCC_ENABLE_PASCAL_STRINGS': 'NO', | 52 'GCC_ENABLE_PASCAL_STRINGS': 'NO', |
| 53 'GCC_ENABLE_TRIGRAPHS': 'NO', | 53 'GCC_ENABLE_TRIGRAPHS': 'NO', |
| 54 'PREBINDING': 'NO', | 54 'COMBINE_HIDPI_IMAGES': 'YES', |
|
siva
2013/04/22 17:17:27
Just curious, why do we need this option. Do we ha
Ivan Posva
2013/04/22 23:04:45
If you do not set this, then Xcode complains about
| |
| 55 }, | 55 }, |
| 56 }, | 56 }, |
| 57 }, | 57 }, |
| 58 }, | 58 }, |
| 59 } | 59 } |
| OLD | NEW |