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

Side by Side Diff: build/common.gypi

Issue 2439005: Linux: include -g for Release builds to aid debugging. There is no downside b... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 10 years, 6 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 | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'antlrdir': 'third_party/antlr3', 7 'antlrdir': 'third_party/antlr3',
8 'breakpaddir': 'breakpad/src', 8 'breakpaddir': 'breakpad/src',
9 'fcolladadir': 'third_party/fcollada/files', 9 'fcolladadir': 'third_party/fcollada/files',
10 'glewdir': 'third_party/glew/files', 10 'glewdir': 'third_party/glew/files',
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'MOZ_X11', 202 'MOZ_X11',
203 'NACL_LINUX=1', 203 'NACL_LINUX=1',
204 'OS_LINUX', 204 'OS_LINUX',
205 'SK_BUILD_FOR_UNIX', 205 'SK_BUILD_FOR_UNIX',
206 'UNICODE', 206 'UNICODE',
207 'XP_UNIX', 207 'XP_UNIX',
208 ], 208 ],
209 'cflags': [ 209 'cflags': [
210 '-fvisibility=hidden', 210 '-fvisibility=hidden',
211 '-Wstrict-aliasing', 211 '-Wstrict-aliasing',
212 # We always want debugging information, even for release builds. It
213 # is stripped by the packager into the -dbgsym package, so it
214 # doesn't affect what we ship.
215 '-g',
212 ], 216 ],
213 }, 217 },
214 }, 218 },
215 ], 219 ],
216 ], 220 ],
217 } 221 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698