Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'iOSFramework', | 8 'target_name': 'iOSFramework', |
| 9 'type': 'shared_library', | 9 'type': 'shared_library', |
| 10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
| 11 'sources': [ | 11 'sources': [ |
| 12 'iOSFramework/iOSFramework.h', | 12 'iOSFramework/iOSFramework.h', |
|
sdefresne
2016/04/14 21:31:13
Can you add a comment here saying that you are usi
Justin Cohen (wrong one)
2016/04/18 14:18:46
Done.
| |
| 13 'iOSFramework/Thing.h', | |
| 14 'iOSFramework/Thing.m', | |
| 13 ], | 15 ], |
| 14 'link_settings': { | 16 'link_settings': { |
| 15 'libraries': [ | 17 'libraries': [ |
| 16 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 18 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 17 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', | 19 '$(SDKROOT)/System/Library/Frameworks/UIKit.framework', |
| 18 ], | 20 ], |
| 19 }, | 21 }, |
| 20 'mac_framework_headers': [ | 22 'mac_framework_headers': [ |
| 21 'iOSFramework/iOSFramework.h', | 23 'iOSFramework/iOSFramework.h', |
| 24 'iOSFramework/Thing.h', | |
| 22 ], | 25 ], |
| 23 'mac_framework_dirs': [ | 26 'mac_framework_dirs': [ |
| 24 '$(SDKROOT)/../../Library/Frameworks', | 27 '$(SDKROOT)/../../Library/Frameworks', |
| 25 ], | 28 ], |
| 26 'xcode_settings': { | 29 'xcode_settings': { |
| 27 'OTHER_CFLAGS': [ | 30 'OTHER_CFLAGS': [ |
| 28 '-fobjc-abi-version=2', | 31 '-fobjc-abi-version=2', |
| 29 ], | 32 ], |
| 30 'INFOPLIST_FILE': 'iOSFramework/Info.plist', | 33 'INFOPLIST_FILE': 'iOSFramework/Info.plist', |
| 31 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', | 34 'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0', |
| 32 'SDKROOT': 'iphoneos', | 35 'SDKROOT': 'iphoneos', |
| 33 'IPHONEOS_DEPLOYMENT_TARGET': '8.0', | 36 'IPHONEOS_DEPLOYMENT_TARGET': '8.0', |
| 34 'CONFIGURATION_BUILD_DIR':'build/Default', | 37 'CONFIGURATION_BUILD_DIR':'build/Default', |
| 35 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', | 38 'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer', |
| 36 }, | 39 }, |
| 37 }, | 40 }, |
| 38 ], | 41 ], |
| 39 } | 42 } |
| OLD | NEW |