| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |