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

Side by Side Diff: runtime/tools/gyp/runtime-configurations.gypi

Issue 12033063: - Fix simarm/simmips builds on Mac. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 11 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 | « no previous file | tools/gyp/configurations.gypi » ('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) 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 dart_io_support to 1 in Dart's all.gypi or common.gypi, 8 # If we have not set dart_io_support to 1 in Dart's all.gypi or common.gypi,
9 # then do not build the native libraries supporting dart:io. 9 # then do not build the native libraries supporting dart:io.
10 'dart_io_support%': 0, 10 'dart_io_support%': 0,
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 }, 81 },
82 }, 82 },
83 }], 83 }],
84 ], 84 ],
85 }, 85 },
86 86
87 'Dart_simarm_Base': { 87 'Dart_simarm_Base': {
88 'abstract': 1, 88 'abstract': 1,
89 'xcode_settings': { 89 'xcode_settings': {
90 'ARCHS': [ 'i386' ], 90 'ARCHS': [ 'i386' ],
91 'GCC_OPTIMIZATION_LEVEL': '3',
Ivan Posva 2013/01/23 22:15:28 This line is not needed anymore, by default the op
92 }, 91 },
93 }, 92 },
94 93
95 'Dart_Release': { 94 'Dart_Release': {
96 'abstract': 1, 95 'abstract': 1,
97 'xcode_settings': { 96 'xcode_settings': {
98 'GCC_OPTIMIZATION_LEVEL': '3', 97 'GCC_OPTIMIZATION_LEVEL': '3',
99 }, 98 },
100 }, 99 },
101 }, 100 },
102 }, 101 },
103 } 102 }
OLDNEW
« no previous file with comments | « no previous file | tools/gyp/configurations.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698