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

Side by Side Diff: test/win/linker-flags/subsystem.gyp

Issue 67373005: win: Fix behaviour of MinimumRequiredVersion (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « test/win/gyptest-link-subsystem.py ('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
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2012 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': 'test_console_ok', 8 'target_name': 'test_console_ok',
9 'type': 'executable', 9 'type': 'executable',
10 'msvs_settings': { 10 'msvs_settings': {
(...skipping 26 matching lines...) Expand all
37 { 37 {
38 'target_name': 'test_windows_fail', 38 'target_name': 'test_windows_fail',
39 'type': 'executable', 39 'type': 'executable',
40 'msvs_settings': { 40 'msvs_settings': {
41 'VCLinkerTool': { 41 'VCLinkerTool': {
42 'SubSystem': '2' 42 'SubSystem': '2'
43 } 43 }
44 }, 44 },
45 'sources': ['hello.cc'], 45 'sources': ['hello.cc'],
46 }, 46 },
47 {
48 'target_name': 'test_console_xp',
49 'type': 'executable',
50 'msvs_settings': {
51 'VCLinkerTool': {
52 'SubSystem': '1',
53 'MinimumRequiredVersion': '5.01', # XP.
54 }
55 },
56 'sources': ['hello.cc'],
57 },
58 {
59 'target_name': 'test_windows_xp',
60 'type': 'executable',
61 'msvs_settings': {
62 'VCLinkerTool': {
63 'SubSystem': '2',
64 'MinimumRequiredVersion': '5.01', # XP.
65 }
66 },
67 'sources': ['subsystem-windows.cc'],
68 },
47 ] 69 ]
48 } 70 }
OLDNEW
« no previous file with comments | « test/win/gyptest-link-subsystem.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698