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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | chrome/utility/BUILD.gn » ('j') | chrome/utility/BUILD.gn » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chrome_utility_sources': [ 7 'chrome_utility_sources': [
8 'utility/chrome_content_utility_client.cc', 8 'utility/chrome_content_utility_client.cc',
9 'utility/chrome_content_utility_client.h', 9 'utility/chrome_content_utility_client.h',
10 'utility/chrome_content_utility_ipc_whitelist.cc', 10 'utility/chrome_content_utility_ipc_whitelist.cc',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'common', 113 'common',
114 ], 114 ],
115 'include_dirs': [ 115 'include_dirs': [
116 '..', 116 '..',
117 '<(grit_out_dir)', 117 '<(grit_out_dir)',
118 ], 118 ],
119 'sources': [ 119 'sources': [
120 '<@(chrome_utility_sources)', 120 '<@(chrome_utility_sources)',
121 ], 121 ],
122 'conditions': [ 122 'conditions': [
123 ['OS=="win"', {
124 'link_settings': {
125 'msvs_settings': {
126 'VCLinkerTool': {
127 'DelayLoadDLLs': [
128 # Prevent wininet from loading in the renderer.
129 # http://crbug.com/460679
130 'wininet.dll',
131 ],
132 },
133 },
134 },
135 }],
123 ['OS!="win" and OS!="mac" and use_openssl==1', { 136 ['OS!="win" and OS!="mac" and use_openssl==1', {
124 'sources!': [ 137 'sources!': [
125 'utility/importer/nss_decryptor.cc', 138 'utility/importer/nss_decryptor.cc',
126 ] 139 ]
127 }], 140 }],
128 ['OS!="win" and OS!="mac" and use_openssl==0', { 141 ['OS!="win" and OS!="mac" and use_openssl==0', {
129 'dependencies': [ 142 'dependencies': [
130 '../crypto/crypto.gyp:crypto', 143 '../crypto/crypto.gyp:crypto',
131 ], 144 ],
132 'sources': [ 145 'sources': [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 }], 199 }],
187 ['safe_browsing==1', { 200 ['safe_browsing==1', {
188 'defines': [ 'FULL_SAFE_BROWSING' ], 201 'defines': [ 'FULL_SAFE_BROWSING' ],
189 }], 202 }],
190 ], 203 ],
191 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 204 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
192 'msvs_disabled_warnings': [ 4267, ], 205 'msvs_disabled_warnings': [ 4267, ],
193 }, 206 },
194 ], 207 ],
195 } 208 }
OLDNEW
« 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