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

Unified Diff: device/serial/serial.gyp

Issue 1640783002: [device] Add setupapi.lib dependency to //device/serial (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: +DELAYLOAD Created 4 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
« no previous file with comments | « device/serial/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/serial/serial.gyp
diff --git a/device/serial/serial.gyp b/device/serial/serial.gyp
index 98635cb49771e7306a21b16294b0eec527f2a25c..62cfb698eccadb7a64d7fac2ea80757ec9ae5106 100644
--- a/device/serial/serial.gyp
+++ b/device/serial/serial.gyp
@@ -45,6 +45,32 @@
'serial_device_enumerator_linux.h',
],
}],
+ ['OS=="win"', {
+ 'link_settings': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'DelayLoadDLLs': [
+ 'setupapi.dll',
+ ],
+ 'AdditionalDependencies': [
+ 'setupapi.lib',
+ ],
+ },
+ },
+ },
+ 'all_dependent_settings': {
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ 'DelayLoadDLLs': [
+ 'setupapi.dll',
+ ],
+ 'AdditionalDependencies': [
+ 'setupapi.lib',
+ ],
+ },
+ },
+ },
+ }],
],
'dependencies': [
'device_serial_mojo',
« no previous file with comments | « device/serial/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698