summaryrefslogtreecommitdiffstats
path: root/build/common.gypi
diff options
context:
space:
mode:
authorbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 01:09:01 +0000
committerbradnelson@google.com <bradnelson@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-22 01:09:01 +0000
commit24c6e0e6dc27a4ca7bb6ab203008b68ce3d8f1b6 (patch)
tree203701d1af22a8c2b002a9a9e756b99d0fc1b338 /build/common.gypi
parent1db8afb42bb28bff171d2ca1b2267866883a70a8 (diff)
downloadchromium_src-24c6e0e6dc27a4ca7bb6ab203008b68ce3d8f1b6.zip
chromium_src-24c6e0e6dc27a4ca7bb6ab203008b68ce3d8f1b6.tar.gz
chromium_src-24c6e0e6dc27a4ca7bb6ab203008b68ce3d8f1b6.tar.bz2
Temporarily turning off stripping for mac builds on the main waterfall to
debug intermittent crash seen only there. BUG=None TEST=None R=bradchen@chromium.org Review URL: http://codereview.chromium.org/7976042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@102221 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/common.gypi')
-rw-r--r--build/common.gypi19
1 files changed, 17 insertions, 2 deletions
diff --git a/build/common.gypi b/build/common.gypi
index cdc02e0..79a1880 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -49,7 +49,7 @@
# Compute the architecture that we're building on.
'conditions': [
- [ 'OS=="win" or OS=="mac"', {
+ ['OS=="win" or OS=="mac"', {
'host_arch%': 'ia32',
}, {
# This handles the Unix platforms for which there is some support.
@@ -1969,7 +1969,22 @@
# different targets, like these.
'mac_pie': 1, # Most executables can be position-independent.
'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
- 'mac_strip': 1, # Strip debugging symbols from the target.
+ # TODO(bradchen): switch back to the following once we have enough
+ # results.
+ #'mac_strip': 1, # Strip debugging symbols from the target.
+ 'conditions': [
+ ['OS=="mac"', {
+ 'conditions': [
+ ['"<!(uname -n)"=="xserve6-m1.golo.chromium.org"', {
+ 'mac_strip': 0,
+ },{
+ 'mac_strip': 1,
+ }],
+ ],
+ },{
+ 'mac_strip': 1,
+ }],
+ ],
},
'mac_bundle': 0,
'xcode_settings': {