summaryrefslogtreecommitdiffstats
path: root/build/internal
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-16 00:42:06 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-16 00:42:06 +0000
commita63241ee38441a2e965f407c29d39147ea2f62ff (patch)
treef75345b62026d540f9928321c189b25af602974c /build/internal
parentdeca5f94decfa83509e3db3c2902070f3eb0d840 (diff)
downloadchromium_src-a63241ee38441a2e965f407c29d39147ea2f62ff.zip
chromium_src-a63241ee38441a2e965f407c29d39147ea2f62ff.tar.gz
chromium_src-a63241ee38441a2e965f407c29d39147ea2f62ff.tar.bz2
Add delay loading of dbghelp.dll into essential.vsprops.
We need some functions from dbghelp.dll to implement backtrace logic in base/debug_util_win.cc. This change will stage things so adding the new function calls won't break everyone. The delay load is in essential.vsprops because everyone will need it in order to link base after the backtrace code is added. Review URL: http://codereview.chromium.org/67137 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@13818 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/internal')
-rw-r--r--build/internal/essential.vsprops4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/internal/essential.vsprops b/build/internal/essential.vsprops
index a23b426..6b0f1c4f 100644
--- a/build/internal/essential.vsprops
+++ b/build/internal/essential.vsprops
@@ -30,9 +30,9 @@
<Tool
Name="VCLinkerTool"
AdditionalOptions="/safeseh /dynamicbase /ignore:4199 /ignore:4221 /nxcompat"
- AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib"
+ AdditionalDependencies="wininet.lib version.lib msimg32.lib ws2_32.lib usp10.lib psapi.lib dbghelp.lib"
AdditionalLibraryDirectories="$(SDKLibs);$(OutDir)\lib"
- DelayLoadDLLs="dwmapi.dll,uxtheme.dll"
+ DelayLoadDLLs="dbghelp.dll,dwmapi.dll,uxtheme.dll"
MapFileName="$(OutDir)\$(TargetName).map"
ImportLibrary="$(OutDir)\lib\$(TargetName).lib"
TargetMachine="1"