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

Side by Side Diff: test/ios/swift-wmo/test.gyp

Issue 1160773005: Support for Swift language and Clang modules for ninja generator. Base URL: https://chromium.googlesource.com/external/gyp@master
Patch Set: Fixed rare build failure when compiling with modules for multiple archs Created 5 years, 4 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 | « test/ios/swift-wmo/main.m ('k') | test/ios/swift/AppDelegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'targets': [
3 {
4 'target_name': 'swift_wmo',
5 'type': 'executable',
6 'mac_bundle': '1',
7 'xcode_settings': {
8 'CLANG_ENABLE_MODULES': 'YES',
9 'CLANG_ENABLE_OBJC_ARC': 'YES',
10 'CLANG_MODULE_CACHE_PATH': '<(PRODUCT_DIR)/ModuleCache',
11 'CODE_SIGNING_REQUIRED': 'NO',
12 'INFOPLIST_FILE': 'Info.plist',
13 'IPHONEOS_DEPLOYMENT_TARGET': '7.0',
14 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/Frameworks'],
15 'SWIFT_OPTIMIZATION_LEVEL': '-Owholemodule',
16 'TARGETED_DEVICE_FAMILY': '1,2',
17 'conditions': [
18 ['"<(GENERATOR)"=="xcode"', {
19 'SDKROOT': 'iphoneos',
20 }, {
21 'SDKROOT': 'iphonesimulator',
22 }],
23 ],
24 },
25 'sources': [
26 'AppDelegate.h',
27 'AppDelegate.m',
28 'main.m',
29 'MySecondSwiftClass.swift',
30 'MySwiftClass.swift',
31 ],
32 'conditions': [
33 ['"<(GENERATOR)"=="ninja"', {
34 'include_dirs': [
35 '<(INTERMEDIATE_DIR)',
36 ],
37 }],
38 ],
39 },
40 ],
41 }
OLDNEW
« no previous file with comments | « test/ios/swift-wmo/main.m ('k') | test/ios/swift/AppDelegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698