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 assert(!is_android && !is_ios) |
| 6 |
5 config("libusb_config") { | 7 config("libusb_config") { |
6 include_dirs = [ | 8 include_dirs = [ |
7 "src/libusb", | 9 "src/libusb", |
8 ] | 10 ] |
9 } | 11 } |
10 | 12 |
11 static_library("libusb") { | 13 static_library("libusb") { |
12 sources = [ | 14 sources = [ |
13 "src/config.h", | 15 "src/config.h", |
14 "src/libusb/core.c", | 16 "src/libusb/core.c", |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 "src/libusb/os/threads_windows.h", | 107 "src/libusb/os/threads_windows.h", |
106 "src/libusb/os/windows_common.h", | 108 "src/libusb/os/windows_common.h", |
107 "src/libusb/os/windows_usb.c", | 109 "src/libusb/os/windows_usb.c", |
108 "src/libusb/os/windows_usb.h", | 110 "src/libusb/os/windows_usb.h", |
109 "src/msvc/config.h", | 111 "src/msvc/config.h", |
110 "src/msvc/inttypes.h", | 112 "src/msvc/inttypes.h", |
111 "src/msvc/stdint.h", | 113 "src/msvc/stdint.h", |
112 ] | 114 ] |
113 } | 115 } |
114 } | 116 } |
OLD | NEW |