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

Side by Side Diff: test/ios/framework/framework.gyp

Issue 1745173002: Add support for iOS Frameworks with header maps. (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Spacing nits Created 4 years, 9 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698