Chromium Code Reviews| Index: pylib/gyp/xcode_emulation.py |
| =================================================================== |
| --- pylib/gyp/xcode_emulation.py (revision 1721) |
| +++ pylib/gyp/xcode_emulation.py (working copy) |
| @@ -684,7 +684,7 @@ |
| self._Test('STRIP_INSTALLED_PRODUCT', 'YES', default='NO')): |
| default_strip_style = 'debugging' |
| - if self._IsBundle(): |
| + if self.spec['type'] == 'loadable_module' and self._IsBundle(): |
|
Mark Mentovai
2013/09/13 21:31:32
Wow, that’s a pretty ridiculous behavior to have t
|
| default_strip_style = 'non-global' |
| elif self.spec['type'] == 'executable': |
| default_strip_style = 'all' |