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 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 |
11 static_library("libusb") { | 11 static_library("libusb") { |
12 external = true | |
13 sources = [ | 12 sources = [ |
14 "src/config.h", | 13 "src/config.h", |
15 "src/libusb/core.c", | 14 "src/libusb/core.c", |
16 "src/libusb/descriptor.c", | 15 "src/libusb/descriptor.c", |
17 "src/libusb/hotplug.c", | 16 "src/libusb/hotplug.c", |
18 "src/libusb/hotplug.h", | 17 "src/libusb/hotplug.h", |
19 "src/libusb/interrupt.c", | 18 "src/libusb/interrupt.c", |
20 "src/libusb/interrupt.h", | 19 "src/libusb/interrupt.h", |
21 "src/libusb/io.c", | 20 "src/libusb/io.c", |
22 "src/libusb/libusb.h", | 21 "src/libusb/libusb.h", |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "src/libusb/os/threads_windows.h", | 100 "src/libusb/os/threads_windows.h", |
102 "src/libusb/os/windows_common.h", | 101 "src/libusb/os/windows_common.h", |
103 "src/libusb/os/windows_usb.c", | 102 "src/libusb/os/windows_usb.c", |
104 "src/libusb/os/windows_usb.h", | 103 "src/libusb/os/windows_usb.h", |
105 "src/msvc/config.h", | 104 "src/msvc/config.h", |
106 "src/msvc/inttypes.h", | 105 "src/msvc/inttypes.h", |
107 "src/msvc/stdint.h", | 106 "src/msvc/stdint.h", |
108 ] | 107 ] |
109 } | 108 } |
110 } | 109 } |
OLD | NEW |