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

Unified Diff: device/core/BUILD.gn

Issue 1439443002: Reland: Add code to deal with serial device disconnection detection on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added setupapi.lib to device/core/BUILD.gn Created 5 years, 1 month 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 | « no previous file | device/core/core.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/core/BUILD.gn
diff --git a/device/core/BUILD.gn b/device/core/BUILD.gn
index e85acb6a5a57d3b485d6bf497be510589e4fcd43..b7e6ac2c0b6abae603ad26e2bee5b6bbda422c24 100644
--- a/device/core/BUILD.gn
+++ b/device/core/BUILD.gn
@@ -8,6 +8,8 @@ component("core") {
sources = [
"device_client.cc",
"device_client.h",
+ "device_info_query_win.cc",
+ "device_info_query_win.h",
"device_monitor_win.cc",
"device_monitor_win.h",
]
@@ -17,4 +19,8 @@ component("core") {
public_deps = [
"//base",
]
+
+ if (is_win) {
+ libs = [ "setupapi.lib" ]
+ }
}
« no previous file with comments | « no previous file | device/core/core.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698