Chromium Code Reviews| Index: pylib/gyp/xcode_emulation.py |
| diff --git a/pylib/gyp/xcode_emulation.py b/pylib/gyp/xcode_emulation.py |
| index 865940290751ac6087be8a8252c6120d56ac7417..fa5715d54b3700e96c82a7c5572266f086591150 100644 |
| --- a/pylib/gyp/xcode_emulation.py |
| +++ b/pylib/gyp/xcode_emulation.py |
| @@ -938,7 +938,8 @@ class XcodeSettings(object): |
| self._Test('STRIP_INSTALLED_PRODUCT', 'YES', default='NO')): |
| default_strip_style = 'debugging' |
| - if self.spec['type'] == 'loadable_module' and self._IsBundle(): |
| + if self.spec['type'] == 'loadable_module' and self._IsBundle() or |
| + self._IsIosAppExtension(): |
|
Nico
2016/02/05 01:43:00
Hm, are app extensions not of type loadable_module
|
| default_strip_style = 'non-global' |
| elif self.spec['type'] == 'executable': |
| default_strip_style = 'all' |