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

Side by Side Diff: test/win/winrt-app-type-revision/winrt-app-type-revison.gyp

Issue 1132743006: Added msvs_application_type_revision for winrt compilation (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Code review updates 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_dll', 8 'target_name': 'enable_winrt_81_revision_dll',
9 'type': 'shared_library', 9 'type': 'shared_library',
10 'msvs_enable_winrt': 1, 10 'msvs_enable_winrt': 1,
11 'msvs_application_type_revision': '8.1'
11 'sources': [ 12 'sources': [
12 'dllmain.cc', 13 'dllmain.cc',
13 ], 14 ],
14 }, 15 },
15 { 16 {
16 'target_name': 'enable_winrt_missing_dll', 17 'target_name': 'enable_winrt_82_revision_dll',
17 'type': 'shared_library', 18 'type': 'shared_library',
19 'msvs_enable_winrt': 1,
20 'msvs_application_type_revision': '8.2'
18 'sources': [ 21 'sources': [
19 'dllmain.cc', 22 'dllmain.cc',
20 ], 23 ],
21 }, 24 },
22 { 25 {
23 'target_name': 'enable_winrt_winphone_dll', 26 'target_name': 'enable_winrt_invalid_revision_dll',
24 'type': 'shared_library', 27 'type': 'shared_library',
25 'msvs_enable_winrt': 1, 28 'msvs_enable_winrt': 1,
26 'msvs_enable_winphone': 1, 29 'msvs_application_type_revision': '999'
27 'sources': [ 30 'sources': [
28 'dllmain.cc', 31 'dllmain.cc',
29 ], 32 ],
33 },
30 'msvs_settings': { 34 'msvs_settings': {
31 'VCLinkerTool': { 35 'VCLinkerTool': {
32 'AdditionalDependencies': [ 36 'AdditionalDependencies': [
33 '%(AdditionalDependencies)', 37 '%(AdditionalDependencies)',
34 ], 38 ],
35 }, 39 },
36 }, 40 },
37 }, 41 },
38 ] 42 ]
39 } 43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698