summaryrefslogtreecommitdiff
path: root/deps/gyp/test/ios/extension/extension.gyp
blob: cf17d82dc4efd73ac01461aa6b17e6723e70a886 (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
# 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++'],
  ],
  'targets': [
    {
      'target_name': 'ExtensionContainer',
      'product_name': 'ExtensionContainer',
      'type': 'executable',
      'mac_bundle': 1,
      'mac_bundle_resources': [
        'ExtensionContainer/Base.lproj/Main.storyboard',
      ],
      'sources': [
        'ExtensionContainer/AppDelegate.h',
        'ExtensionContainer/AppDelegate.m',
        'ExtensionContainer/ViewController.h',
        'ExtensionContainer/ViewController.m',
        'ExtensionContainer/main.m',
      ],
      'copies': [
        {
          'destination': '<(PRODUCT_DIR)/ExtensionContainer.app/PlugIns',
          'files': [
            '<(PRODUCT_DIR)/ActionExtension.appex',
      ]}],
      'dependencies': [
        'ActionExtension'
      ],

      'link_settings': {
        'libraries': [
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
          '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
        ],
      },
      'xcode_settings': {
        'OTHER_CFLAGS': [
          '-fobjc-abi-version=2',
        ],
        'INFOPLIST_FILE': 'ExtensionContainer/Info.plist',
        'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
        'ARCHS': [ 'armv7' ],
        'SDKROOT': 'iphoneos',
        'IPHONEOS_DEPLOYMENT_TARGET': '7.0',
        'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
      },
    },
    {
      'target_name': 'ActionExtension',
      'product_name': 'ActionExtension',
      'type': 'executable',
      'mac_bundle': 1,
      'ios_app_extension': 1,
      'sources': [
        'ActionExtension/ActionViewController.h',
        'ActionExtension/ActionViewController.m',
      ],
      'link_settings': {
        'libraries': [
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
          '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
          '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework',
        ],
      },
      'xcode_settings': {
        'OTHER_CFLAGS': [
          '-fobjc-abi-version=2',
        ],
        'INFOPLIST_FILE': 'ActionExtension/Info.plist',
        'GCC_VERSION': 'com.apple.compilers.llvm.clang.1_0',
        'ARCHS': [ 'armv7' ],
        'SDKROOT': 'iphoneos',
        'IPHONEOS_DEPLOYMENT_TARGET': '7.0',
        'CODE_SIGN_IDENTITY[sdk=iphoneos*]': 'iPhone Developer',
      },
    },
  ],
}