OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'device_usb', | 11 'target_name': 'device_usb', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../components/components.gyp:device_event_log_component', | 14 '../../components/components.gyp:device_event_log_component', |
15 '../../net/net.gyp:net', | 15 '../../net/net.gyp:net', |
16 '../../third_party/libusb/libusb.gyp:libusb', | 16 '../../third_party/libusb/libusb.gyp:libusb', |
17 ], | 17 ], |
18 'include_dirs': [ | 18 'include_dirs': [ |
19 '../..', | 19 '../..', |
20 ], | 20 ], |
21 'sources': [ | 21 'sources': [ |
22 'usb_context.cc', | 22 'usb_context.cc', |
23 'usb_context.h', | 23 'usb_context.h', |
24 'usb_descriptors.cc', | 24 'usb_descriptors.cc', |
25 'usb_descriptors.h', | 25 'usb_descriptors.h', |
26 'usb_device_impl.cc', | 26 'usb_device_impl.cc', |
27 'usb_device_impl.h', | 27 'usb_device_impl.h', |
| 28 'usb_device.cc', |
28 'usb_device.h', | 29 'usb_device.h', |
29 'usb_device_filter.cc', | 30 'usb_device_filter.cc', |
30 'usb_device_filter.h', | 31 'usb_device_filter.h', |
31 'usb_device_handle_impl.cc', | 32 'usb_device_handle_impl.cc', |
32 'usb_device_handle_impl.h', | 33 'usb_device_handle_impl.h', |
33 'usb_device_handle.h', | 34 'usb_device_handle.h', |
34 'usb_error.cc', | 35 'usb_error.cc', |
35 'usb_error.h', | 36 'usb_error.h', |
36 'usb_ids.cc', | 37 'usb_ids.cc', |
37 'usb_ids.h', | 38 'usb_ids.h', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 }], | 72 }], |
72 ['chromeos==1', { | 73 ['chromeos==1', { |
73 'dependencies': [ | 74 'dependencies': [ |
74 '../../chromeos/chromeos.gyp:chromeos', | 75 '../../chromeos/chromeos.gyp:chromeos', |
75 ], | 76 ], |
76 }], | 77 }], |
77 ] | 78 ] |
78 }, | 79 }, |
79 ], | 80 ], |
80 } | 81 } |
OLD | NEW |