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

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

Issue 798743004: Add support for starting a detached process (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor fixes + rebase Created 5 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
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%': '0',
kustermann 2015/01/16 16:11:04 What is this?
Søren Gjesse 2015/01/21 12:32:35 Setting -O0 for debug builds. Only for debugging.
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 'cflags': [ 13 'cflags': [
14 '-Werror', 14 '-Werror',
15 '<@(common_gcc_warning_flags)', 15 '<@(common_gcc_warning_flags)',
16 '-Wnon-virtual-dtor', 16 '-Wnon-virtual-dtor',
17 '-Wvla', 17 '-Wvla',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 ], 168 ],
169 }], 169 }],
170 ], 170 ],
171 'cflags': [ 171 'cflags': [
172 '-O3', 172 '-O3',
173 ], 173 ],
174 }, 174 },
175 }, 175 },
176 }, 176 },
177 } 177 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698