OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_ids = "//third_party/usb_ids/usb.ids" | 5 source_ids = "//third_party/usb_ids/usb.ids" |
6 generated_ids = "$target_gen_dir/usb_ids_gen.cc" | 6 generated_ids = "$target_gen_dir/usb_ids_gen.cc" |
7 | 7 |
8 source_set("usb") { | 8 source_set("usb") { |
9 sources = [ | 9 sources = [ |
| 10 "usb_context.cc", |
| 11 "usb_context.h", |
| 12 "usb_device_impl.cc", |
| 13 "usb_device_impl.h", |
| 14 "usb_device.h", |
| 15 "usb_device_filter.cc", |
| 16 "usb_device_filter.h", |
| 17 "usb_device_handle_impl.cc", |
| 18 "usb_device_handle_impl.h", |
| 19 "usb_device_handle.h", |
| 20 "usb_error.cc", |
| 21 "usb_error.h", |
10 "usb_ids.cc", | 22 "usb_ids.cc", |
11 "usb_ids.h", | 23 "usb_ids.h", |
| 24 "usb_interface.h", |
| 25 "usb_interface_impl.cc", |
| 26 "usb_interface_impl.h", |
| 27 "usb_service.h", |
| 28 "usb_service_impl.cc", |
12 generated_ids, | 29 generated_ids, |
13 ] | 30 ] |
| 31 |
14 deps = [ | 32 deps = [ |
15 ":usb_device_ids", | 33 ":usb_device_ids", |
16 "//base", | 34 "//base", |
| 35 "//base/third_party/dynamic_annotations", |
| 36 "//net", |
| 37 "//third_party/libusb", |
17 ] | 38 ] |
| 39 |
| 40 if (is_linux) { |
| 41 configs += [ "//build/config/linux:udev" ] |
| 42 } |
18 } | 43 } |
19 | 44 |
20 action("usb_device_ids") { | 45 action("usb_device_ids") { |
21 script = "//device/usb/tools/usb_ids.py" | 46 script = "//device/usb/tools/usb_ids.py" |
22 inputs = [ source_ids ] | 47 inputs = [ source_ids ] |
23 outputs = [ generated_ids ] | 48 outputs = [ generated_ids ] |
24 args = [ | 49 args = [ |
25 "-i", rebase_path(source_ids, root_build_dir), | 50 "-i", rebase_path(source_ids, root_build_dir), |
26 "-o", rebase_path(generated_ids, root_build_dir), | 51 "-o", rebase_path(generated_ids, root_build_dir), |
27 ] | 52 ] |
28 | 53 |
29 # Only the device_usb target can depend on us. | 54 # Only the device_usb target can depend on us. |
30 visibility = [ ":usb" ] | 55 visibility = [ ":usb" ] |
31 } | 56 } |
OLD | NEW |