summaryrefslogtreecommitdiff
path: root/deps/gyp/test/ios/watch/watch.gyp
blob: 49be5554eea92d2e32d5a2f635a142e6448a3398 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# Copyright (c) 2014 Google Inc. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'make_global_settings': [
    ['CC', '/usr/bin/clang'],
    ['CXX', '/usr/bin/clang++'],
  ],
  'target_defaults': {
      'xcode_settings': {
        'OTHER_CFLAGS': [
          '-fobjc-abi-version=2',
        ],
        'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
        'SDKROOT': 'iphoneos',
        'IPHONEOS_DEPLOYMENT_TARGET': '8.2',
        'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
      }
  },
  'targets': [
    {
      'target_name': 'WatchContainer',
      'product_name': 'WatchContainer',
      'type': 'executable',
      'mac_bundle': 1,
      'mac_bundle_resources': [
        'WatchContainer/Base.lproj/Main.storyboard',
      ],
      'sources': [
        'WatchContainer/AppDelegate.h',
        'WatchContainer/AppDelegate.m',
        'WatchContainer/ViewController.h',
        'WatchContainer/ViewController.m',
        'WatchContainer/main.m',
      ],
      'copies': [
        {
          'destination': '<(PRODUCT_DIR)/WatchContainer.app/PlugIns',
          'files': [
            '<(PRODUCT_DIR)/WatchKitExtension.appex',
      ]}],
      'dependencies': [
        'WatchKitExtension'
      ],
      'link_settings': {
        'libraries': [
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
          '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
        ],
      },
      'xcode_settings': {
        'INFOPLIST_FILE': 'WatchContainer/Info.plist',
      },
    },
    {
      'target_name': 'WatchKitExtension',
      'product_name': 'WatchKitExtension',
      'type': 'executable',
      'mac_bundle': 1,
      'ios_watchkit_extension': 1,
      'sources': [
        'WatchKitExtension/InterfaceController.h',
        'WatchKitExtension/InterfaceController.m',
      ],
      'mac_bundle_resources': [
        'WatchKitExtension/Images.xcassets',
        '<(PRODUCT_DIR)/WatchApp.app',
      ],
      'dependencies': [
        'WatchApp'
      ],
      'link_settings': {
        'libraries': [
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
          '$(SDKROOT)/System/Library/Frameworks/WatchKit.framework',
        ],
      },
      'xcode_settings': {
        'INFOPLIST_FILE': 'WatchKitExtension/Info.plist',
        'SKIP_INSTALL': 'YES',
        'COPY_PHASE_STRIP': 'NO',
      },
    },
    {
      'target_name': 'WatchApp',
      'product_name': 'WatchApp',
      'type': 'executable',
      'mac_bundle': 1,
      'ios_watch_app': 1,
      'mac_bundle_resources': [
        'WatchApp/Images.xcassets',
        'WatchApp/Interface.storyboard',
      ],
      'xcode_settings': {
        'INFOPLIST_FILE': 'WatchApp/Info.plist',
        'SKIP_INSTALL': 'YES',
        'COPY_PHASE_STRIP': 'NO',
        'TARGETED_DEVICE_FAMILY': '4',
        'TARGETED_DEVICE_FAMILY[sdk=iphonesimulator*]': '1,4',
      },
    },
  ],
}