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

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: gyp 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..431b52d2934cda4002b5b24c47d15ef13ec998f6 100644
--- a/device/serial/serial.gyp
+++ b/device/serial/serial.gyp
@@ -45,6 +45,20 @@
'serial_device_enumerator_linux.h',
],
}],
+ ['OS=="win"', {
+ 'link_settings': {
+ 'libraries': [
+ '-lsetupapi.lib',
Nico 2016/01/27 17:40:44 I think normally .libs are passed via LinkSettings
+ ],
+ },
+ 'all_dependent_settings': {
+ 'link_settings': {
+ 'libraries': [
+ '-lsetupapi.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