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

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

Issue 2901163002: Use assembly instead of C array literals to link the core snapshot into the VM. (Closed)
Patch Set: windows Created 3 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
« no previous file with comments | « runtime/vm/clustered_snapshot.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': {
11 'Dart_Linux_Base': { 11 'Dart_Linux_Base': {
12 'abstract': 1, 12 'abstract': 1,
13 'defines': [ 13 'defines': [
14 '_FORTIFY_SOURCE=2', 14 '_FORTIFY_SOURCE=2',
15 ], 15 ],
16 'cflags': [ 16 'cflags': [
17 '-Werror',
18 '<@(common_gcc_warning_flags)', 17 '<@(common_gcc_warning_flags)',
19 '-Wnon-virtual-dtor', 18 '-Wnon-virtual-dtor',
20 '-Wvla', 19 '-Wvla',
21 '-Woverloaded-virtual', 20 '-Woverloaded-virtual',
22 '-g3', 21 '-g3',
23 '-ggdb3', 22 '-ggdb3',
24 '-fno-rtti', 23 '-fno-rtti',
25 '-fno-exceptions', 24 '-fno-exceptions',
26 '-fstack-protector', 25 '-fstack-protector',
27 '-Wa,--noexecstack', 26 '-Wa,--noexecstack',
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 '-ffunction-sections', 377 '-ffunction-sections',
379 '-fomit-frame-pointer', 378 '-fomit-frame-pointer',
380 ], 379 ],
381 'ldflags': [ 380 'ldflags': [
382 '-Wl,--gc-sections', 381 '-Wl,--gc-sections',
383 ], 382 ],
384 }, 383 },
385 }, 384 },
386 }, 385 },
387 } 386 }
OLDNEW
« no previous file with comments | « runtime/vm/clustered_snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698