summaryrefslogtreecommitdiffstats
path: root/build/common.gypi
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-28 20:31:48 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-28 20:31:48 +0000
commitf70085e4e8c0dda48a017a8e86e17b6fa43433f5 (patch)
treeea0372f9363618aa2a1b559bdad9467f4e20ac1c /build/common.gypi
parentde86a8510c9c8f70f27ce41b425a82c416f987e2 (diff)
downloadchromium_src-f70085e4e8c0dda48a017a8e86e17b6fa43433f5.zip
chromium_src-f70085e4e8c0dda48a017a8e86e17b6fa43433f5.tar.gz
chromium_src-f70085e4e8c0dda48a017a8e86e17b6fa43433f5.tar.bz2
Add debugging symbols to official Linux Chrome builds.
Review URL: http://codereview.chromium.org/115874 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17107 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r--build/common.gypi5
1 files changed, 5 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 17adc41..7efdf06 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -62,6 +62,11 @@
'conditions': [
['branding=="Chrome"', {
'defines': ['GOOGLE_CHROME_BUILD'],
+ 'conditions': [
+ ['OS=="linux"', {
+ 'cflags': [ '-gstabs' ],
+ }],
+ ],
}, { # else: branding!="Chrome"
'defines': ['CHROMIUM_BUILD'],
}],