| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'iOSFramework', |
| 9 'type': 'shared_library', |
| 10 'mac_bundle': 1, |
| 11 'sources': [ |
| 12 'iOSFramework/iOSFramework.h', |
| 13 ], |
| 14 'link_settings': { |
| 15 'libraries': [ |
| 16 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 17 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 18 ], |
| 19 }, |
| 20 'mac_framework_headers': [ |
| 21 'iOSFramework/iOSFramework.h', |
| 22 ], |
| 23 'mac_framework_dirs': [ |
| 24 '$(SDKROOT)/../../Library/Frameworks', |
| 25 ], |
| 26 'xcode_settings': { |
| 27 'OTHER_CFLAGS': [ |
| 28 '-fobjc-abi-version=2', |
| 29 ], |
| 30 'INFOPLIST_FILE': 'iOSFramework/Info.plist', |
| 31 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', |
| 32 'SDKROOT': 'iphoneos', |
| 33 'IPHONEOS_DEPLOYMENT_TARGET': '8.0', |
| 34 'CONFIGURATION_BUILD_DIR':'build/Default', |
| 35 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', |
| 36 }, |
| 37 }, |
| 38 ], |
| 39 } |
| OLD | NEW |