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

Unified Diff: device/bluetooth/bluetooth.gyp

Issue 1844073002: Remove "#pragma comment(lib" in device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix delay loading crashes Created 4 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 | « device/bluetooth/BUILD.gn ('k') | device/bluetooth/bluetooth_init_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth.gyp
diff --git a/device/bluetooth/bluetooth.gyp b/device/bluetooth/bluetooth.gyp
index 26c90d359f91f1317a4bf98c844e10f49709408f..e819902854c318cddde6af9ee19fa63aa156c9a5 100644
--- a/device/bluetooth/bluetooth.gyp
+++ b/device/bluetooth/bluetooth.gyp
@@ -288,6 +288,12 @@
'Bthprops.cpl',
'setupapi.dll',
],
+ 'AdditionalDependencies': [
+ # Bthprops must be listed before BluetoothApis or else delay
+ # loading crashes.
+ 'Bthprops.lib',
+ 'BluetoothApis.lib',
+ ],
},
},
},
@@ -300,6 +306,12 @@
'Bthprops.cpl',
'setupapi.dll',
],
+ 'AdditionalDependencies': [
+ # Bthprops must be listed before BluetoothApis or else delay
+ # loading crashes.
+ 'Bthprops.lib',
+ 'BluetoothApis.lib',
+ ],
},
},
}],
« no previous file with comments | « device/bluetooth/BUILD.gn ('k') | device/bluetooth/bluetooth_init_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698