| 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/libusb.h', | 12 'src/libusb/libusb.h', |
| 13 'src/libusb/libusbi.h', | 13 'src/libusb/libusbi.h', |
| 14 'src/libusb/core.c', | 14 'src/libusb/core.c', |
| 15 'src/libusb/descriptor.c', | 15 'src/libusb/descriptor.c', |
| 16 'src/libusb/io.c', | 16 'src/libusb/io.c', |
| 17 'src/libusb/sync.c', | 17 'src/libusb/sync.c', |
| 18 'src/libusb/version.h', | 18 'src/libusb/version.h', |
| 19 'src/libusb/interrupt.c', |
| 20 'src/libusb/interrupt.h', |
| 19 ], | 21 ], |
| 20 'include_dirs': [ | 22 'include_dirs': [ |
| 21 'src', | 23 'src', |
| 22 'src/libusb', | 24 'src/libusb', |
| 23 'src/libusb/os', | 25 'src/libusb/os', |
| 24 ], | 26 ], |
| 25 'direct_dependent_settings': { | 27 'direct_dependent_settings': { |
| 26 'include_dirs': [ | 28 'include_dirs': [ |
| 27 'src/libusb', | 29 'src/libusb', |
| 28 ], | 30 ], |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 'OS_DARWIN=1', | 89 'OS_DARWIN=1', |
| 88 'POLL_NFDS_TYPE=nfds_t', | 90 'POLL_NFDS_TYPE=nfds_t', |
| 89 'THREADS_POSIX=1', | 91 'THREADS_POSIX=1', |
| 90 '_GNU_SOURCE=1', | 92 '_GNU_SOURCE=1', |
| 91 ], | 93 ], |
| 92 }], | 94 }], |
| 93 ], | 95 ], |
| 94 }, | 96 }, |
| 95 ], | 97 ], |
| 96 } | 98 } |
| OLD | NEW |