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

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: 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 | no next file » | no next file with comments »
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..3fc590a86e31a088bffb53a1a8940b2bf0737d99 100644
--- a/chrome/chrome_utility.gypi
+++ b/chrome/chrome_utility.gypi
@@ -153,6 +153,18 @@
'<@(chrome_utility_shared_media_sources)',
],
'conditions': [
+ ['OS=="win"', {
scottmg 2015/02/24 22:06:16 What does this have to do with enable_extensions==
jschuh 2015/02/25 18:07:44 Nothing. I put it in the wrong place because I was
+ 'link_settings': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'DelayLoadDLLs': [
+ # Prevent this from loading in the renderer process.
scottmg 2015/02/24 22:08:03 also please add a link to the appcontainer bug her
+ 'wininet.dll',
+ ],
+ },
+ },
+ },
+ }],
['OS=="win" or OS=="mac"', {
'dependencies': [
'../components/components.gyp:wifi_component',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698