Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(829)

Side by Side Diff: test/win/enable-winrt/enable-winrt.gyp

Issue 1132743006: Added msvs_application_type_revision for winrt compilation (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 Google Inc. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'enable_winrt_81_revision_dll',
scottmg 2015/05/13 22:17:32 these would be better in a separate file, maybe wi
coop 2015/05/13 22:40:51 Done.
9 'type': 'shared_library',
10 'msvs_enable_winrt': 1,
11 'msvs_application_type_revision' : '8.1'
scottmg 2015/05/13 22:17:32 nit; can you remove the space before : to match th
coop 2015/05/13 22:40:51 Done.
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 {
8 'target_name': 'enable_winrt_dll', 35 'target_name': 'enable_winrt_dll',
9 'type': 'shared_library', 36 'type': 'shared_library',
10 'msvs_enable_winrt': 1, 37 'msvs_enable_winrt': 1,
11 'sources': [ 38 'sources': [
12 'dllmain.cc', 39 'dllmain.cc',
13 ], 40 ],
14 }, 41 },
15 { 42 {
16 'target_name': 'enable_winrt_missing_dll', 43 'target_name': 'enable_winrt_missing_dll',
17 'type': 'shared_library', 44 'type': 'shared_library',
(...skipping 12 matching lines...) Expand all
30 'msvs_settings': { 57 'msvs_settings': {
31 'VCLinkerTool': { 58 'VCLinkerTool': {
32 'AdditionalDependencies': [ 59 'AdditionalDependencies': [
33 '%(AdditionalDependencies)', 60 '%(AdditionalDependencies)',
34 ], 61 ],
35 }, 62 },
36 }, 63 },
37 }, 64 },
38 ] 65 ]
39 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698