summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-12 18:27:40 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-12 18:27:40 +0000
commitbd4816fe35162438ff2a9e796fe47b15872404ac (patch)
tree8b50a59a10766fe355f2c2da1898f5ef21227dc1 /chrome
parent14ab3ef81773a92741c14b3406e3de6aa2e58cd5 (diff)
downloadchromium_src-bd4816fe35162438ff2a9e796fe47b15872404ac.zip
chromium_src-bd4816fe35162438ff2a9e796fe47b15872404ac.tar.gz
chromium_src-bd4816fe35162438ff2a9e796fe47b15872404ac.tar.bz2
Changing DelayLoadDLLs from string to list
TBR=nsylvian changing chrome/chrome.gyp Review URL: http://codereview.chromium.org/125064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18295 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/chrome.gyp15
1 files changed, 14 insertions, 1 deletions
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index 7a2d0b7..96808a4 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -3924,7 +3924,20 @@
'msvs_settings': {
'VCLinkerTool': {
'BaseAddress': '0x01c30000',
- 'DelayLoadDLLs': 'crypt32.dll;cryptui.dll;winhttp.dll;wininet.dll;wsock32.dll;ws2_32.dll;winspool.drv;comdlg32.dll;imagehlp.dll;psapi.dll;urlmon.dll;imm32.dll',
+ 'DelayLoadDLLs': [
+ 'crypt32.dll',
+ 'cryptui.dll',
+ 'winhttp.dll',
+ 'wininet.dll',
+ 'wsock32.dll',
+ 'ws2_32.dll',
+ 'winspool.drv',
+ 'comdlg32.dll',
+ 'imagehlp.dll',
+ 'psapi.dll',
+ 'urlmon.dll',
+ 'imm32.dll',
+ ],
'ImportLibrary': '$(OutDir)\\lib\\chrome_dll.lib',
# Set /SUBSYSTEM:WINDOWS for chrome.dll (for consistency).
'SubSystem': '2',