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

Unified Diff: build/common.gypi

Issue 138593004: Use an alternate mechanism for CreateFile calls in Chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: IAT patch clean up Created 6 years, 11 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
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 7312a4659c8a10aa949d00409bb8efd95a153ce2..a70dc84fc76c4c23ea26c8c49127d0e1fd580e2c 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2473,6 +2473,13 @@
['enable_ipc_fuzzer==1', {
'defines': ['ENABLE_IPC_FUZZER=1'],
}],
+ ['OS=="win" and component=="shared_library"', {
+ 'dependencies': [
+ # All targets in a component build must depend on chrome_redirects,
+ # to ensure that certain calls go through it.
+ '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_redirects',
+ ],
+ }],
], # conditions for 'target_defaults'
'target_conditions': [
['enable_wexit_time_destructors==1', {

Powered by Google App Engine
This is Rietveld 408576698