Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(728)

Unified Diff: third_party/class-dump/class-dump.gyp

Issue 1179573004: Correct iOS device build for latest Xcode beta. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/net_common.gypi ('k') | third_party/libxml/libxml.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 be3a15c13ec01fec87e596e4741d08142b84ef4a..60d067896344a69f33ebbe6c10c91c584c0d63f4 100644
--- a/third_party/class-dump/class-dump.gyp
+++ b/third_party/class-dump/class-dump.gyp
@@ -171,25 +171,16 @@
'src/Source/NSString-CDExtensions.m',
'src/Source/cd_objc2.h',
],
- 'variables': {
- 'developer_dir': '<!(xcode-select -print-path)',
- 'xcode_version': '<!(xcodebuild -version | awk \'/Xcode/ {print $2}\')',
+ 'link_settings': {
+ 'libraries': [
+ '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
+ ],
+ 'xcode_settings': {
+ 'OTHER_LDFLAGS': [
+ '-lcrypto',
+ ],
+ },
},
- '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.<(dynamic_library_extension)',
- ],
'include_dirs': [
'src/Source',
],
« no previous file with comments | « net/net_common.gypi ('k') | third_party/libxml/libxml.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698