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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/win/gyptest-link-subsystem.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/win/linker-flags/subsystem.gyp
diff --git a/test/win/linker-flags/subsystem.gyp b/test/win/linker-flags/subsystem.gyp
index ec68e805c9b74e63e4bbaaf49508b93ad06511be..63f072a20676287d176465252e8e68a882484140 100644
--- a/test/win/linker-flags/subsystem.gyp
+++ b/test/win/linker-flags/subsystem.gyp
@@ -44,5 +44,27 @@
},
'sources': ['hello.cc'],
},
+ {
+ 'target_name': 'test_console_xp',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '1',
+ 'MinimumRequiredVersion': '5.01', # XP.
+ }
+ },
+ 'sources': ['hello.cc'],
+ },
+ {
+ 'target_name': 'test_windows_xp',
+ 'type': 'executable',
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'SubSystem': '2',
+ 'MinimumRequiredVersion': '5.01', # XP.
+ }
+ },
+ 'sources': ['subsystem-windows.cc'],
+ },
]
}
« 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