Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(514)

Side by Side Diff: dart/tools/gyp/configurations_xcode.gypi

Issue 10892034: Update V8 to 3.12. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/tools/gyp/common.gypi ('k') | deps/all.deps/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « dart/tools/gyp/common.gypi ('k') | deps/all.deps/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698