| Index: third_party/class-dump/class-dump.gyp
|
| diff --git a/third_party/class-dump/class-dump.gyp b/third_party/class-dump/class-dump.gyp
|
| index 68dec196e9c3e1ae536d2d55498ea373fee0fda5..9b3a06ce2e8699c55fd23ddc6fb89fc812957cfe 100644
|
| --- a/third_party/class-dump/class-dump.gyp
|
| +++ b/third_party/class-dump/class-dump.gyp
|
| @@ -171,9 +171,24 @@
|
| 'src/Source/NSString-CDExtensions.m',
|
| 'src/Source/cd_objc2.h',
|
| ],
|
| + 'variables': {
|
| + 'developer_dir': '<!(xcode-select -print-path)',
|
| + 'xcode_version': '<!(xcodebuild -version | grep Xcode | awk \'{print $2}\')',
|
| + },
|
| + 'conditions': [
|
| + ['xcode_version>="7.0"', {
|
| + 'variables': {
|
| + 'dynamic_library_extension': 'tbd',
|
| + },
|
| + }, { # else: xcode_version<"7.0"
|
| + 'variables': {
|
| + 'dynamic_library_extension': 'dylib',
|
| + },
|
| + }]
|
| + ],
|
| 'libraries': [
|
| '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
| - '$(SDKROOT)/usr/lib/libcrypto.dylib',
|
| + '$(SDKROOT)/usr/lib/libcrypto.<(dynamic_library_extension)',
|
| ],
|
| 'include_dirs': [
|
| 'src/Source',
|
|
|