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

Side by Side Diff: test/win/winrt-target-platform-version/winrt-target-platform-version.gyp

Issue 1267703004: Added msvs_target_platform_version and msvs_target_platform_minversion for winrt compilation (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Updated with more code review feedback on formatting Created 5 years, 4 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
« no previous file with comments | « test/win/winrt-target-platform-version/dllmain.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 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_10_platversion_dll',
9 'type': 'shared_library',
10 'msvs_enable_winrt': 1,
11 'msvs_application_type_revision': '10.0',
12 'msvs_target_platform_version':'10.0.10240.0',
13 'msvs_target_platform_minversion':'10.0.10240.0'
14 'sources': [
15 'dllmain.cc',
16 ],
17 },
18 {
19 'target_name': 'enable_winrt_10_platversion_nominver_dll',
20 'type': 'shared_library',
21 'msvs_enable_winrt': 1,
22 'msvs_application_type_revision': '10.0',
23 'msvs_target_platform_version':'10.0.10240.0',
24 'sources': [
25 'dllmain.cc',
26 ],
27 },
28 {
29 'target_name': 'enable_winrt_9_platversion_dll',
30 'type': 'shared_library',
31 'msvs_enable_winrt': 1,
32 'msvs_application_type_revision': '10.0',
33 'msvs_target_platform_version':'9.0.0.0',
34 'msvs_target_platform_minversion':'9.0.0.0'
35 'sources': [
36 'dllmain.cc',
37 ],
38 },
39 {
40 'target_name': 'enable_winrt_missing_platversion_dll',
41 'type': 'shared_library',
42 'msvs_enable_winrt': 1,
43 'msvs_application_type_revision': '10.0',
44 'sources': [
45 'dllmain.cc',
46 ],
47 },
48 ]
49 }
OLDNEW
« no previous file with comments | « test/win/winrt-target-platform-version/dllmain.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698