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

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

Issue 1462953002: VM: Make more globals constant where easily possible. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Remove unnecessary const_cast Created 5 years, 1 month 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
« no previous file with comments | « runtime/vm/service.cc ('k') | no next file » | 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 'cflags': [ 229 'cflags': [
230 '-fno-omit-frame-pointer', 230 '-fno-omit-frame-pointer',
231 ], 231 ],
232 'defines': [ 232 'defines': [
233 'NATIVE_CODE_HAS_FRAME_POINTERS' 233 'NATIVE_CODE_HAS_FRAME_POINTERS'
234 ], 234 ],
235 }], 235 }],
236 ], 236 ],
237 'cflags': [ 237 'cflags': [
238 '-O3', 238 '-O3',
239 '-fdata-sections',
240 '-ffunction-sections', 239 '-ffunction-sections',
241 ], 240 ],
242 'ldflags': [ 241 'ldflags': [
243 '-Wl,--gc-sections', 242 '-Wl,--gc-sections',
244 ], 243 ],
245 }, 244 },
246 }, 245 },
247 }, 246 },
248 } 247 }
OLDNEW
« no previous file with comments | « runtime/vm/service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698