OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'libusb', | 8 'target_name': 'libusb', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
11 'src/config.h', | 11 'src/config.h', |
12 'src/libusb/core.c', | 12 'src/libusb/core.c', |
13 'src/libusb/descriptor.c', | 13 'src/libusb/descriptor.c', |
14 'src/libusb/hotplug.c', | 14 'src/libusb/hotplug.c', |
15 'src/libusb/hotplug.h', | 15 'src/libusb/hotplug.h', |
16 'src/libusb/interrupt.c', | 16 'src/libusb/interrupt.c', |
17 'src/libusb/interrupt.h', | 17 'src/libusb/interrupt.h', |
18 'src/libusb/io.c', | 18 'src/libusb/io.c', |
19 'src/libusb/libusb.h', | 19 'src/libusb/libusb.h', |
20 'src/libusb/libusbi.h', | 20 'src/libusb/libusbi.h', |
| 21 'src/libusb/strerror.c', |
21 'src/libusb/sync.c', | 22 'src/libusb/sync.c', |
22 'src/libusb/version.h', | 23 'src/libusb/version.h', |
23 'src/libusb/version_nano.h', | 24 'src/libusb/version_nano.h', |
24 ], | 25 ], |
25 'include_dirs': [ | 26 'include_dirs': [ |
26 'src', | 27 'src', |
27 'src/libusb', | 28 'src/libusb', |
28 'src/libusb/os', | 29 'src/libusb/os', |
29 ], | 30 ], |
30 'direct_dependent_settings': { | 31 'direct_dependent_settings': { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 ], | 91 ], |
91 'include_dirs': [ | 92 'include_dirs': [ |
92 'src/msvc', | 93 'src/msvc', |
93 ], | 94 ], |
94 'msvs_disabled_warnings': [ 4267 ], | 95 'msvs_disabled_warnings': [ 4267 ], |
95 }], | 96 }], |
96 ], | 97 ], |
97 }, | 98 }, |
98 ], | 99 ], |
99 } | 100 } |
OLD | NEW |