summaryrefslogtreecommitdiffstats
path: root/third_party/python/gyp/test/mac/xcuitest/test.gyp
blob: 80cdf9032d095ccd36a22d5e9f578c4c81575a9d (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
# Copyright (c) 2013 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.

{
  'target_defaults': {
    'xcode_settings': {
      'SDKROOT': 'iphoneos',
      'FRAMEWORK_SEARCH_PATHS': [
        '$(inherited)',
        '$(DEVELOPER_FRAMEWORKS_DIR)',
      ],
      'OTHER_LDFLAGS': [
        '$(inherited)',
        '-ObjC',
      ],
      'GCC_PREFIX_HEADER': '',
      'CLANG_ENABLE_OBJC_ARC': 'YES',
      'INFOPLIST_FILE': 'Info.plist',
    },
  },
  'targets': [
    {
      'target_name': 'testApp',
      'type': 'executable',
      'mac_bundle': 1,
      'sources': [
        'MyAppDelegate.h',
        'MyAppDelegate.m',
        'main.m',
      ],
      'link_settings': {
        'libraries': [
          '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
          '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
        ],
      },
    },
    {
      'target_name': 'tests',
      'type': 'loadable_module',
      'mac_bundle': 1,
      'mac_xcuitest_bundle': 1,
      'sources': [
        'TestCase.m',
      ],
      'dependencies': [
        'testApp',
      ],
      'mac_bundle_resources': [
        'resource.txt',
      ],
      'variables': {
        # This must *not* be set for xctest ui tests.
        'xctest_host': '',
      },
      'link_settings': {
        'libraries': [
          '$(SDKROOT)/System/Library/Frameworks/XCTest.framework',
        ]
      },
      'xcode_settings': {
        'WRAPPER_EXTENSION': 'xctest',
        'TEST_TARGET_NAME': 'testApp',
      },
    },
  ],
}