summaryrefslogtreecommitdiff
path: root/deps/gyp/test/ios/app-bundle/test-archs.gyp
blob: b1558c94becc80e9e539f597ce52e2bc61321987 (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
106
107
108
109
110
# 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.
{
  'make_global_settings': [
    ['CC', '/usr/bin/clang'],
  ],
  'target_defaults': {
    'product_extension': 'bundle',
    'mac_bundle_resources': [
      'TestApp/English.lproj/InfoPlist.strings',
      'TestApp/English.lproj/MainMenu.xib',
    ],
    'link_settings': {
      'libraries': [
        '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
        '$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
      ],
    },
    'xcode_settings': {
      'OTHER_CFLAGS': [
        '-fobjc-abi-version=2',
      ],
      'CODE_SIGNING_REQUIRED': 'NO',
      'SDKROOT': 'iphonesimulator',  # -isysroot
      'TARGETED_DEVICE_FAMILY': '1,2',
      'INFOPLIST_FILE': 'TestApp/TestApp-Info.plist',
      'IPHONEOS_DEPLOYMENT_TARGET': '7.0',
      'CONFIGURATION_BUILD_DIR':'build/Default',
    },
  },
  'targets': [
    {
      'target_name': 'TestNoArchs',
      'product_name': 'TestNoArchs',
      'type': 'executable',
      'mac_bundle': 1,
      'sources': [
        'TestApp/main.m',
        'TestApp/only-compile-in-32-bits.m',
      ],
      'xcode_settings': {
        'VALID_ARCHS': [
          'i386',
          'x86_64',
          'arm64',
          'armv7',
        ],
      }
    },
    {
      'target_name': 'TestArch32Bits',
      'product_name': 'TestArch32Bits',
      'type': 'executable',
      'mac_bundle': 1,
      'sources': [
        'TestApp/main.m',
        'TestApp/only-compile-in-32-bits.m',
      ],
      'xcode_settings': {
        'ARCHS': [
          '$(ARCHS_STANDARD)',
        ],
        'VALID_ARCHS': [
          'i386',
          'armv7',
        ],
      },
    },
    {
      'target_name': 'TestArch64Bits',
      'product_name': 'TestArch64Bits',
      'type': 'executable',
      'mac_bundle': 1,
      'sources': [
        'TestApp/main.m',
        'TestApp/only-compile-in-64-bits.m',
      ],
      'xcode_settings': {
        'ARCHS': [
          '$(ARCHS_STANDARD_INCLUDING_64_BIT)',
        ],
        'VALID_ARCHS': [
          'x86_64',
          'arm64',
        ],
      },
    },
    {
      'target_name': 'TestMultiArchs',
      'product_name': 'TestMultiArchs',
      'type': 'executable',
      'mac_bundle': 1,
      'sources': [
        'TestApp/main.m',
      ],
      'xcode_settings': {
        'ARCHS': [
          '$(ARCHS_STANDARD_INCLUDING_64_BIT)',
        ],
        'VALID_ARCHS': [
          'x86_64',
          'i386',
          'arm64',
          'armv7',
        ],
      }
    },
  ],
}