diff options
author | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-02 22:22:32 +0000 |
---|---|---|
committer | tschmelcher@chromium.org <tschmelcher@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-02 22:22:32 +0000 |
commit | 924309219534bb7fa0743cfdad8bca34c5716088 (patch) | |
tree | 397340d073ce98a7e54f8ee45bfef8166f2b4392 /o3d | |
parent | 7f22e72403cf15277253e12be647de40d8001f0c (diff) | |
download | chromium_src-924309219534bb7fa0743cfdad8bca34c5716088.zip chromium_src-924309219534bb7fa0743cfdad8bca34c5716088.tar.gz chromium_src-924309219534bb7fa0743cfdad8bca34c5716088.tar.bz2 |
Linux: include -g for Release builds to aid debugging. There is no downside because it does not affect what we ship.
BUG=none
TEST=built on Linux; verified no significant change in shipped file size
Review URL: http://codereview.chromium.org/2439005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48778 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d')
-rw-r--r-- | o3d/build/common.gypi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/o3d/build/common.gypi b/o3d/build/common.gypi index ce9301c..9184c53 100644 --- a/o3d/build/common.gypi +++ b/o3d/build/common.gypi @@ -209,6 +209,10 @@ 'cflags': [ '-fvisibility=hidden', '-Wstrict-aliasing', + # We always want debugging information, even for release builds. It + # is stripped by the packager into the -dbgsym package, so it + # doesn't affect what we ship. + '-g', ], }, }, |