| Index: pylib/gyp/xcode_emulation.py
|
| diff --git a/pylib/gyp/xcode_emulation.py b/pylib/gyp/xcode_emulation.py
|
| index 865940290751ac6087be8a8252c6120d56ac7417..f5a35e437853261755662db7d97f10cecc9cf593 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' or self._IsIosAppExtension())
|
| + and self._IsBundle()):
|
| default_strip_style = 'non-global'
|
| elif self.spec['type'] == 'executable':
|
| default_strip_style = 'all'
|
|
|