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

« back to all changes in this revision

Viewing changes to test/win/winrt-app-type-revision/winrt-app-type-revison.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:
 
1
# Copyright (c) 2013 Google Inc. All rights reserved.
 
2
# Use of this source code is governed by a BSD-style license that can be
 
3
# found in the LICENSE file.
 
4
 
 
5
{
 
6
 'targets': [
 
7
    {
 
8
      'target_name': 'enable_winrt_81_revision_dll',
 
9
      'type': 'shared_library',
 
10
      'msvs_enable_winrt': 1,
 
11
      'msvs_application_type_revision': '8.1'
 
12
      'sources': [
 
13
        'dllmain.cc',
 
14
      ],
 
15
    },
 
16
    {
 
17
      'target_name': 'enable_winrt_82_revision_dll',
 
18
      'type': 'shared_library',
 
19
      'msvs_enable_winrt': 1,
 
20
      'msvs_application_type_revision': '8.2'
 
21
      'sources': [
 
22
        'dllmain.cc',
 
23
      ],
 
24
    },
 
25
    {
 
26
      'target_name': 'enable_winrt_invalid_revision_dll',
 
27
      'type': 'shared_library',
 
28
      'msvs_enable_winrt': 1,
 
29
      'msvs_application_type_revision': '999'
 
30
      'sources': [
 
31
        'dllmain.cc',
 
32
      ],
 
33
    },
 
34
      'msvs_settings': {
 
35
        'VCLinkerTool': {
 
36
          'AdditionalDependencies': [
 
37
            '%(AdditionalDependencies)',
 
38
          ],
 
39
        },
 
40
      },
 
41
    },
 
42
  ]
 
43
}