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

Side by Side Diff: tools/gyp/configurations_make.gypi

Issue 1130253005: Don't attempt to walk the native stack by default. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 7 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 | « tools/gyp/configurations_android.gypi ('k') | tools/gyp/configurations_msvs.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) 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 }, 193 },
194 194
195 'Dart_Linux_Debug': { 195 'Dart_Linux_Debug': {
196 'abstract': 1, 196 'abstract': 1,
197 'conditions': [ 197 'conditions': [
198 ['c_frame_pointers==1', { 198 ['c_frame_pointers==1', {
199 'cflags': [ 199 'cflags': [
200 '-fno-omit-frame-pointer', 200 '-fno-omit-frame-pointer',
201 ], 201 ],
202 'defines': [ 202 'defines': [
203 'PROFILE_NATIVE_CODE' 203 'NATIVE_CODE_HAS_FRAME_POINTERS'
204 ], 204 ],
205 }], 205 }],
206 ], 206 ],
207 'cflags': [ 207 'cflags': [
208 '-O<(dart_debug_optimization_level)', 208 '-O<(dart_debug_optimization_level)',
209 ], 209 ],
210 }, 210 },
211 211
212 'Dart_Linux_Release': { 212 'Dart_Linux_Release': {
213 'abstract': 1, 213 'abstract': 1,
214 'conditions': [ 214 'conditions': [
215 ['c_frame_pointers==1', { 215 ['c_frame_pointers==1', {
216 'cflags': [ 216 'cflags': [
217 '-fno-omit-frame-pointer', 217 '-fno-omit-frame-pointer',
218 ], 218 ],
219 'defines': [ 219 'defines': [
220 'PROFILE_NATIVE_CODE' 220 'NATIVE_CODE_HAS_FRAME_POINTERS'
221 ], 221 ],
222 }], 222 }],
223 ], 223 ],
224 'cflags': [ 224 'cflags': [
225 '-O3', 225 '-O3',
226 ], 226 ],
227 }, 227 },
228 }, 228 },
229 }, 229 },
230 } 230 }
OLDNEW
« no previous file with comments | « tools/gyp/configurations_android.gypi ('k') | tools/gyp/configurations_msvs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698