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