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

Unified Diff: build/common.gypi

Issue 7976042: Temporarily turning off stripping for mac builds on the main waterfall to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 102206)
+++ build/common.gypi (working copy)
@@ -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': {
« 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