Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2011, 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 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'configurations': { | 10 'configurations': { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 42 | 42 |
| 43 # Attempt to remove compiler options that Xcode adds by default. | 43 # Attempt to remove compiler options that Xcode adds by default. |
| 44 'GCC_CW_ASM_SYNTAX': 'NO', # Remove -fasm-blocks. | 44 'GCC_CW_ASM_SYNTAX': 'NO', # Remove -fasm-blocks. |
| 45 | 45 |
| 46 'GCC_ENABLE_PASCAL_STRINGS': 'NO', | 46 'GCC_ENABLE_PASCAL_STRINGS': 'NO', |
| 47 'GCC_ENABLE_TRIGRAPHS': 'NO', | 47 'GCC_ENABLE_TRIGRAPHS': 'NO', |
| 48 'PREBINDING': 'NO', | 48 'PREBINDING': 'NO', |
| 49 }, | 49 }, |
| 50 }, | 50 }, |
| 51 | 51 |
| 52 'Dart_ia32_Base': { | |
| 53 'xcode_settings': { | |
| 54 'ARCHS': [ 'i386' ], | |
| 55 }, | |
| 56 }, | |
| 57 | |
| 58 'Dart_x64_Base': { | |
| 59 'xcode_settings': { | |
| 60 'ARCHS': [ 'x86_64' ], | |
| 61 }, | |
| 62 }, | |
| 63 | |
| 64 'Dart_simarm_Base': { | 52 'Dart_simarm_Base': { |
|
ricow1
2012/08/29 16:00:17
I know that there is not a conflict, but could we
ahe
2012/08/30 09:02:07
Done.
| |
| 65 'xcode_settings': { | 53 'xcode_settings': { |
| 66 'ARCHS': [ 'i386' ], | 54 'ARCHS': [ 'i386' ], |
| 67 'GCC_OPTIMIZATION_LEVEL': '3', | 55 'GCC_OPTIMIZATION_LEVEL': '3', |
| 68 }, | 56 }, |
| 69 }, | 57 }, |
| 70 | 58 |
| 71 'Dart_Debug': { | 59 'Dart_Debug': { |
| 72 'xcode_settings': { | 60 'xcode_settings': { |
| 73 'GCC_OPTIMIZATION_LEVEL': '<(dart_debug_optimization_level)', | 61 'GCC_OPTIMIZATION_LEVEL': '<(dart_debug_optimization_level)', |
| 74 }, | 62 }, |
| 75 }, | 63 }, |
| 76 | 64 |
| 77 'Dart_Release': { | 65 'Dart_Release': { |
| 78 'xcode_settings': { | 66 'xcode_settings': { |
| 79 'GCC_OPTIMIZATION_LEVEL': '3', | 67 'GCC_OPTIMIZATION_LEVEL': '3', |
| 80 }, | 68 }, |
| 81 }, | 69 }, |
| 82 }, | 70 }, |
| 83 }, | 71 }, |
| 84 } | 72 } |
| OLD | NEW |