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

Unified Diff: chrome/chrome.gyp

Issue 12295040: Stop delay loading user32.dll from chrome.dll on x86/Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make sure both MSVS and ninja builds link correctly. Created 7 years, 9 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 | « chrome/app/delay_load_hook_win.cc ('k') | chrome/chrome.user32.delay.imports » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome.gyp
diff --git a/chrome/chrome.gyp b/chrome/chrome.gyp
index f181d4d5fb8ff5896a1947d16c20cc5231515ee2..be44f7442f2d7fabbb1d8b5fa6c879e57bef7939 100644
--- a/chrome/chrome.gyp
+++ b/chrome/chrome.gyp
@@ -1040,6 +1040,27 @@
['OS=="win" and target_arch=="ia32"',
{ 'targets': [
{
+ 'target_name': 'chrome_user32_delay_imports',
+ 'type': 'none',
+ 'variables': {
+ 'lib_dir': '<(INTERMEDIATE_DIR)',
+ },
+ 'sources': [
+ 'chrome.user32.delay.imports'
+ ],
+ 'includes': [
+ '../build/win/importlibs/create_import_lib.gypi',
+ ],
+ 'direct_dependent_settings': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'AdditionalLibraryDirectories': ['<(lib_dir)', ],
+ 'AdditionalDependencies': ['chrome.user32.delay.lib', ],
+ },
+ },
+ },
+ },
+ {
'target_name': 'crash_service_win64',
'type': 'executable',
'product_name': 'crash_service64',
« no previous file with comments | « chrome/app/delay_load_hook_win.cc ('k') | chrome/chrome.user32.delay.imports » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698