Commit 24c6e0e6 authored by bradnelson@google.com's avatar bradnelson@google.com

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
parent 1db8afb4
......@@ -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': {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment