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

Side by Side Diff: ios/crnet/crnet_consumer/crnet_consumer.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 unified diff | Download patch
« no previous file with comments | « no previous file | ios/third_party/gcdwebserver/gcdwebserver.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [], 9 'targets': [],
10 'conditions': [ 10 'conditions': [
(...skipping 28 matching lines...) Expand all
39 'libraries': [ 39 'libraries': [
40 '<(PRODUCT_DIR)/libcrnet_standalone.a', 40 '<(PRODUCT_DIR)/libcrnet_standalone.a',
41 '$(SDKROOT)/System/Library/Frameworks/CFNetwork.framework', 41 '$(SDKROOT)/System/Library/Frameworks/CFNetwork.framework',
42 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 42 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
43 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework', 43 '$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
44 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 44 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
45 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ', 45 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework ',
46 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', 46 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
47 '$(SDKROOT)/System/Library/Frameworks/Security.framework', 47 '$(SDKROOT)/System/Library/Frameworks/Security.framework',
48 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framewor k', 48 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framewor k',
49 '$(SDKROOT)/usr/lib/libresolv.dylib',
50 '$(SDKROOT)/usr/lib/libsqlite3.dylib',
51 '$(SDKROOT)/usr/lib/libxml2.dylib',
52 ], 49 ],
50 'xcode_settings': {
51 'OTHER_LDFLAGS': [
52 '-lresolv',
53 '-lsqlite3',
54 '-lxml2',
55 ],
56 },
53 }, 57 },
54 'xcode_settings': { 58 'xcode_settings': {
55 'CLANG_ENABLE_OBJC_ARC': 'YES', 59 'CLANG_ENABLE_OBJC_ARC': 'YES',
56 'DEAD_CODE_STRIPPING': 'YES', 60 'DEAD_CODE_STRIPPING': 'YES',
57 'INFOPLIST_FILE': 'crnet-consumer-Info.plist', 61 'INFOPLIST_FILE': 'crnet-consumer-Info.plist',
58 }, 62 },
59 }, 63 },
60 ], 64 ],
61 }], 65 }],
62 ], 66 ],
63 } 67 }
OLDNEW
« no previous file with comments | « no previous file | ios/third_party/gcdwebserver/gcdwebserver.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698