| 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) | 5 assert(!is_ios) |
| 6 | 6 |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 | 8 |
| 9 config("libusb_config") { | 9 config("libusb_config") { |
| 10 include_dirs = [ "src/libusb" ] | 10 include_dirs = [ "src/libusb" ] |
| 11 } | 11 } |
| 12 | 12 |
| 13 static_library("libusb") { | 13 static_library("libusb") { |
| 14 sources = [ | 14 sources = [ |
| 15 "src/config.h", | 15 "src/config.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 "src/libusb/os/threads_windows.h", | 116 "src/libusb/os/threads_windows.h", |
| 117 "src/libusb/os/windows_common.h", | 117 "src/libusb/os/windows_common.h", |
| 118 "src/libusb/os/windows_usb.c", | 118 "src/libusb/os/windows_usb.c", |
| 119 "src/libusb/os/windows_usb.h", | 119 "src/libusb/os/windows_usb.h", |
| 120 "src/msvc/config.h", | 120 "src/msvc/config.h", |
| 121 "src/msvc/inttypes.h", | 121 "src/msvc/inttypes.h", |
| 122 "src/msvc/stdint.h", | 122 "src/msvc/stdint.h", |
| 123 ] | 123 ] |
| 124 } | 124 } |
| 125 } | 125 } |
| OLD | NEW |