OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 config("libusb_config") { | 5 config("libusb_config") { |
6 include_dirs = [ | 6 include_dirs = [ |
7 "src/libusb", | 7 "src/libusb", |
8 ] | 8 ] |
9 } | 9 } |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 "src/libusb/os/poll_posix.h", | 29 "src/libusb/os/poll_posix.h", |
30 "src/libusb/os/poll_windows.c", | 30 "src/libusb/os/poll_windows.c", |
31 "src/libusb/os/poll_windows.h", | 31 "src/libusb/os/poll_windows.h", |
32 "src/libusb/os/threads_posix.c", | 32 "src/libusb/os/threads_posix.c", |
33 "src/libusb/os/threads_posix.h", | 33 "src/libusb/os/threads_posix.h", |
34 "src/libusb/os/threads_windows.c", | 34 "src/libusb/os/threads_windows.c", |
35 "src/libusb/os/threads_windows.h", | 35 "src/libusb/os/threads_windows.h", |
36 "src/libusb/os/windows_common.h", | 36 "src/libusb/os/windows_common.h", |
37 "src/libusb/os/windows_usb.c", | 37 "src/libusb/os/windows_usb.c", |
38 "src/libusb/os/windows_usb.h", | 38 "src/libusb/os/windows_usb.h", |
| 39 "src/libusb/strerror.c", |
39 "src/libusb/sync.c", | 40 "src/libusb/sync.c", |
40 "src/libusb/version.h", | 41 "src/libusb/version.h", |
41 "src/libusb/version_nano.h", | 42 "src/libusb/version_nano.h", |
42 "src/msvc/config.h", | 43 "src/msvc/config.h", |
43 "src/msvc/inttypes.h", | 44 "src/msvc/inttypes.h", |
44 "src/msvc/stdint.h", | 45 "src/msvc/stdint.h", |
45 ] | 46 ] |
46 include_dirs = [ | 47 include_dirs = [ |
47 "src/libusb/os", | 48 "src/libusb/os", |
48 ] | 49 ] |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 "src/libusb/os/threads_windows.h", | 105 "src/libusb/os/threads_windows.h", |
105 "src/libusb/os/windows_common.h", | 106 "src/libusb/os/windows_common.h", |
106 "src/libusb/os/windows_usb.c", | 107 "src/libusb/os/windows_usb.c", |
107 "src/libusb/os/windows_usb.h", | 108 "src/libusb/os/windows_usb.h", |
108 "src/msvc/config.h", | 109 "src/msvc/config.h", |
109 "src/msvc/inttypes.h", | 110 "src/msvc/inttypes.h", |
110 "src/msvc/stdint.h", | 111 "src/msvc/stdint.h", |
111 ] | 112 ] |
112 } | 113 } |
113 } | 114 } |
OLD | NEW |