Commit ad97de14 authored by sebmarchand's avatar sebmarchand Committed by Commit bot

Disable WPO for mini_installer

We need to do this because when doing a PGO build the /GL flag gets automatically set everywhere, and we're hitting this warning: https://msdn.microsoft.com/en-us/library/b8s7ctwz%28v=vs.90%29.aspx because of the custom memset implementation (https://code.google.com/p/chromium/codesearch#chromium/src/chrome/installer/mini_installer/mini_installer.cc&q=mini_ins&sq=package:chromium&l=862)

TBR=robertshield@chromium.org
BUG=309849

Review URL: https://codereview.chromium.org/1035893002

Cr-Commit-Position: refs/heads/master@{#322377}
parent 11bdc33e
...@@ -134,6 +134,7 @@ ...@@ -134,6 +134,7 @@
'BasicRuntimeChecks': '0', 'BasicRuntimeChecks': '0',
'BufferSecurityCheck': 'false', 'BufferSecurityCheck': 'false',
'ExceptionHandling': '0', 'ExceptionHandling': '0',
'WholeProgramOptimization': 'false',
}, },
'VCLinkerTool': { 'VCLinkerTool': {
'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment