~hjd/ubuntu/wily/gyp/debian-merged

« back to all changes in this revision

Viewing changes to test/mac/archs/test-archs-multiarch.gyp

  • Committer: Hans Joachim Desserud
  • Date: 2015-10-31 12:46:59 UTC
  • mfrom: (6.2.6 sid)
  • Revision ID: hans_joachim_desserud-20151031124659-lzxekr6woskh4k0b
Merge latest Debian version

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
      },
22
22
    },
23
23
    {
 
24
      'target_name': 'shared_32_64_bundle',
 
25
      'product_name': 'My Framework',
 
26
      'type': 'shared_library',
 
27
      'mac_bundle': 1,
 
28
      'sources': [ 'my_file.cc' ],
 
29
      'xcode_settings': {
 
30
        'ARCHS': [ 'i386', 'x86_64' ],
 
31
      },
 
32
    },
 
33
    {
24
34
      'target_name': 'module_32_64',
25
35
      'type': 'loadable_module',
26
36
      'sources': [ 'my_file.cc' ],
29
39
      },
30
40
    },
31
41
    {
 
42
      'target_name': 'module_32_64_bundle',
 
43
      'product_name': 'My Bundle',
 
44
      'type': 'loadable_module',
 
45
      'mac_bundle': 1,
 
46
      'sources': [ 'my_file.cc' ],
 
47
      'xcode_settings': {
 
48
        'ARCHS': [ 'i386', 'x86_64' ],
 
49
      },
 
50
    },
 
51
    {
32
52
      'target_name': 'exe_32_64',
33
53
      'type': 'executable',
34
54
      'sources': [ 'empty_main.cc' ],
56
76
        'GCC_PRECOMPILE_PREFIX_HEADER': 'YES',
57
77
      },
58
78
    },
 
79
    # This does not compile but should not cause generation errors.
 
80
    {
 
81
      'target_name': 'exe_32_64_no_sources',
 
82
      'type': 'executable',
 
83
      'dependencies': [
 
84
        'static_32_64',
 
85
      ],
 
86
      'sources': [],
 
87
      'xcode_settings': {
 
88
        'ARCHS': ['i386', 'x86_64'],
 
89
      },
 
90
    },
59
91
  ]
60
92
}