Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(188)

Unified Diff: chrome/chrome_utility.gypi

Issue 945663004: Make wininet.dll delay load (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/utility/BUILD.gn » ('j') | chrome/utility/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_utility.gypi
diff --git a/chrome/chrome_utility.gypi b/chrome/chrome_utility.gypi
index d986e14b44bc13baedd98ece6e0d36fc80ac6997..9c13e8ef073ad782d4553b840dcfbaf83926f284 100644
--- a/chrome/chrome_utility.gypi
+++ b/chrome/chrome_utility.gypi
@@ -120,6 +120,19 @@
'<@(chrome_utility_sources)',
],
'conditions': [
+ ['OS=="win"', {
+ 'link_settings': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'DelayLoadDLLs': [
+ # Prevent wininet from loading in the renderer.
+ # http://crbug.com/460679
+ 'wininet.dll',
+ ],
+ },
+ },
+ },
+ }],
['OS!="win" and OS!="mac" and use_openssl==1', {
'sources!': [
'utility/importer/nss_decryptor.cc',
« no previous file with comments | « no previous file | chrome/utility/BUILD.gn » ('j') | chrome/utility/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698