Add a USB forwarding application that works on Windows too
It has been tested with a Windows VM sending a few messages. The VM may
have gained some necessary state during testing so it won't work on
other Windows machines, but I've tried to clear it all out and it still
worked.
Change-Id: I814fd57653cd8d86534516e8c4f626746146e626
diff --git a/debian/libusb-1.0.BUILD b/debian/libusb-1.0.BUILD
new file mode 100644
index 0000000..a307cec
--- /dev/null
+++ b/debian/libusb-1.0.BUILD
@@ -0,0 +1,14 @@
+cc_library(
+ name = 'libusb_1_0',
+ visibility = ['//visibility:public'],
+ hdrs = [
+ 'usr/include/libusb-1.0/libusb.h',
+ ],
+ srcs = [
+ 'usr/lib/x86_64-linux-gnu/libusb-1.0.so',
+ ],
+ includes = [
+ 'usr/include',
+ ],
+ restricted_to = ['@//tools:k8'],
+)