blob: 5f37b5a2aba5fe51c118540f81c0cb80c7814e8d [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# 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}