diff options
author | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 03:39:30 +0000 |
---|---|---|
committer | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 03:39:30 +0000 |
commit | 7af0a8b1d6317e4c177d6232d9dd7ace363b230c (patch) | |
tree | 1f5a6471594b917425640dc2533592035ab9f268 /chrome | |
parent | 1bcb9751195e00e3caa8d2ef1f4593da391154fd (diff) | |
download | chromium_src-7af0a8b1d6317e4c177d6232d9dd7ace363b230c.zip chromium_src-7af0a8b1d6317e4c177d6232d9dd7ace363b230c.tar.gz chromium_src-7af0a8b1d6317e4c177d6232d9dd7ace363b230c.tar.bz2 |
Forcing correct subsystem for mini_installer and chrome_frame_mini_installer.
For some reason 'SubSystem': 2 was getting ignored in the generated projects in spite of being in the target_defaults section for this file. Fixed by adding it again to the Debug_Base and Release_Base configurations.
BUG=None
TEST=Run mini_installer.exe by double clicking it in Windows Explorer. Verify that no command shell appears.
Review URL: http://codereview.chromium.org/601089
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39188 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rwxr-xr-x | chrome/installer/mini_installer.gyp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/installer/mini_installer.gyp b/chrome/installer/mini_installer.gyp index c81271c..a549b7b 100755 --- a/chrome/installer/mini_installer.gyp +++ b/chrome/installer/mini_installer.gyp @@ -72,6 +72,7 @@ 'BufferSecurityCheck': 'false', }, 'VCLinkerTool': { + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 'AdditionalOptions': [ '/safeseh:no', '/dynamicbase:no', @@ -91,6 +92,7 @@ 'BufferSecurityCheck': 'false', }, 'VCLinkerTool': { + 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 'AdditionalOptions': [ '/SAFESEH:NO', '/NXCOMPAT', |