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

Unified Diff: device/usb/BUILD.gn

Issue 2702623002: Add support for reading USB descriptors to the new Windows backend. (Closed)
Patch Set: Created 3 years, 10 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 | « no previous file | device/usb/usb_descriptors.h » ('j') | device/usb/usb_device_handle_win.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/usb/BUILD.gn
diff --git a/device/usb/BUILD.gn b/device/usb/BUILD.gn
index 9fb12359365781a48ac72764774741e5deccf3af..3d0f01f8f4233c15468894edbf9c45af18d39c06 100644
--- a/device/usb/BUILD.gn
+++ b/device/usb/BUILD.gn
@@ -32,6 +32,8 @@ static_library("usb") {
"usb_device_handle.h",
"usb_device_handle_android.cc",
"usb_device_handle_android.h",
+ "usb_device_handle_win.cc",
+ "usb_device_handle_win.h",
"usb_device_linux.cc",
"usb_device_linux.h",
"usb_device_win.cc",
@@ -92,7 +94,10 @@ static_library("usb") {
}
if (is_win) {
- libs = [ "setupapi.lib" ]
+ libs = [
+ "setupapi.lib",
+ "winusb.lib",
+ ]
}
if (is_android || is_chromeos || is_linux) {
« no previous file with comments | « no previous file | device/usb/usb_descriptors.h » ('j') | device/usb/usb_device_handle_win.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698