| Index: pylib/gyp/generator/xcode.py
|
| diff --git a/pylib/gyp/generator/xcode.py b/pylib/gyp/generator/xcode.py
|
| index 7972459363e922f08504210ff051cd05a0b953d3..6d5a8cbd4403b5147fd9dd60247148f9721d07eb 100644
|
| --- a/pylib/gyp/generator/xcode.py
|
| +++ b/pylib/gyp/generator/xcode.py
|
| @@ -36,6 +36,8 @@ _library_search_paths_var = 'LIBRARY_SEARCH_PATHS'
|
| generator_default_variables = {
|
| 'EXECUTABLE_PREFIX': '',
|
| 'EXECUTABLE_SUFFIX': '',
|
| + 'EXTENSION_PREFIX': '',
|
| + 'EXTENSION_SUFFIX': '',
|
| 'STATIC_LIB_PREFIX': 'lib',
|
| 'SHARED_LIB_PREFIX': 'lib',
|
| 'STATIC_LIB_SUFFIX': '.a',
|
| @@ -652,6 +654,7 @@ def GenerateOutput(target_list, target_dicts, data, params):
|
| 'loadable_module+bundle': 'com.apple.product-type.bundle',
|
| 'loadable_module+xctest': 'com.apple.product-type.bundle.unit-test',
|
| 'shared_library+bundle': 'com.apple.product-type.framework',
|
| + 'extension+bundle': 'com.apple.product-type.app-extension',
|
| }
|
|
|
| target_properties = {
|
|
|