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

Side by Side Diff: chrome/chrome_dll.gypi

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: Build config sketch, mostly works for x86 and x64. Move the hook back to base." 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'conditions': [ 5 'conditions': [
6 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'chrome_dll', 9 'target_name': 'chrome_dll',
10 'type': 'none', 10 'type': 'none',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 '../ui/views/views.gyp:views', 105 '../ui/views/views.gyp:views',
106 '../webkit/support/webkit_support.gyp:webkit_resources', 106 '../webkit/support/webkit_support.gyp:webkit_resources',
107 ], 107 ],
108 'sources': [ 108 'sources': [
109 'app/chrome_command_ids.h', 109 'app/chrome_command_ids.h',
110 'app/chrome_dll.rc', 110 'app/chrome_dll.rc',
111 'app/chrome_dll_resource.h', 111 'app/chrome_dll_resource.h',
112 'app/chrome_main.cc', 112 'app/chrome_main.cc',
113 'app/chrome_main_delegate.cc', 113 'app/chrome_main_delegate.cc',
114 'app/chrome_main_delegate.h', 114 'app/chrome_main_delegate.h',
115 'app/delay_load_hook_win.cc',
116 'app/delay_load_hook_win.h',
115 117
116 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc ', 118 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc ',
117 '../base/win/dllmain.cc', 119 '../base/win/dllmain.cc',
118 120
119 '../webkit/glue/resources/aliasb.cur', 121 '../webkit/glue/resources/aliasb.cur',
120 '../webkit/glue/resources/cell.cur', 122 '../webkit/glue/resources/cell.cur',
121 '../webkit/glue/resources/col_resize.cur', 123 '../webkit/glue/resources/col_resize.cur',
122 '../webkit/glue/resources/copy.cur', 124 '../webkit/glue/resources/copy.cur',
123 '../webkit/glue/resources/none.cur', 125 '../webkit/glue/resources/none.cur',
124 '../webkit/glue/resources/row_resize.cur', 126 '../webkit/glue/resources/row_resize.cur',
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/chrome.dll.pdb', 281 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/chrome.dll.pdb',
280 }, 282 },
281 }, 283 },
282 }], 284 }],
283 ], 285 ],
284 }, 286 },
285 ], 287 ],
286 }], 288 }],
287 ], 289 ],
288 } 290 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698