Commit 6655d1ab authored by rogerm@chromium.org's avatar rogerm@chromium.org

Fix output locations of syzygy versions of mini_installer's PDB and Map files.

The default paths have changed under from Visual Studio 2008 to 2010 and which causes the PDB and MAP files for the syzygyized mini_installer to get generated to the same locations as for the regular mini_installer. This further causes the staging of the Syzygy optimized build to fail because it expects the PDB file to be somewhere else.

Made the paths of the PDB and MAP files explicit.


BUG=
TEST=


Review URL: https://chromiumcodereview.appspot.com/10407006

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@137580 0039d316-1c4b-4281-b951-d872f2087c98
parent 2380ba35
......@@ -47,6 +47,8 @@
},
'VCLinkerTool': {
'OutputFile': '<(output_dir)/mini_installer.exe',
'ProgramDatabaseFile': '<(output_dir)/mini_installer.pdb',
'MapFileName': '<(output_dir)/mini_installer.map',
'RandomizedBaseAddress': '1',
'DataExecutionPrevention': '0',
'AdditionalLibraryDirectories': [
......
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