OLD | NEW |
(Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 component("usb_service") { |
| 6 sources = [ |
| 7 "usb_context.cc", |
| 8 "usb_context.h", |
| 9 "usb_device_impl.cc", |
| 10 "usb_device_impl.h", |
| 11 "usb_device.h", |
| 12 "usb_device_handle_impl.cc", |
| 13 "usb_device_handle_impl.h", |
| 14 "usb_device_handle.h", |
| 15 "usb_error.cc", |
| 16 "usb_error.h", |
| 17 "usb_interface.h", |
| 18 "usb_interface_impl.cc", |
| 19 "usb_interface_impl.h", |
| 20 "usb_service.h", |
| 21 "usb_service_impl.cc", |
| 22 ] |
| 23 |
| 24 defines = [ "USB_SERVICE_IMPLEMENTATION" ] |
| 25 |
| 26 deps = [ |
| 27 "//base", |
| 28 "//base/third_party/dynamic_annotations", |
| 29 "//content/public/browser", |
| 30 "//net", |
| 31 "//third_party/libusb", |
| 32 ] |
| 33 |
| 34 if (is_linux) { |
| 35 configs += [ "//build/config/linux:udev" ] |
| 36 } |
| 37 } |
OLD | NEW |