Home | History | Annotate | Download | only in libusb
      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
      3 # found in the LICENSE file.
      4 
      5 {
      6   'targets': [
      7     {
      8       'target_name': 'libusb',
      9       'type': 'static_library',
     10       'sources': [
     11         'src/config.h',
     12         'src/libusb/core.c',
     13         'src/libusb/descriptor.c',
     14         'src/libusb/hotplug.c',
     15         'src/libusb/hotplug.h',
     16         'src/libusb/interrupt.c',
     17         'src/libusb/interrupt.h',
     18         'src/libusb/io.c',
     19         'src/libusb/libusb.h',
     20         'src/libusb/libusbi.h',
     21         'src/libusb/strerror.c',
     22         'src/libusb/sync.c',
     23         'src/libusb/version.h',
     24         'src/libusb/version_nano.h',
     25       ],
     26       'include_dirs': [
     27         'src',
     28         'src/libusb',
     29         'src/libusb/os',
     30       ],
     31       'direct_dependent_settings': {
     32         'include_dirs': [
     33           'src/libusb',
     34         ],
     35       },
     36       'conditions': [
     37         [ 'OS == "linux" or OS == "android" or OS == "mac"', {
     38           'sources': [
     39             'src/libusb/os/poll_posix.c',
     40             'src/libusb/os/poll_posix.h',
     41             'src/libusb/os/threads_posix.c',
     42             'src/libusb/os/threads_posix.h',
     43           ],
     44           'defines': [
     45             'DEFAULT_VISIBILITY=',
     46             'HAVE_GETTIMEOFDAY=1',
     47             'HAVE_POLL_H=1',
     48             'HAVE_SYS_TIME_H=1',
     49             'LIBUSB_DESCRIBE="1.0.16"',
     50             'POLL_NFDS_TYPE=nfds_t',
     51             'THREADS_POSIX=1',
     52           ],
     53         }],
     54         [ 'OS == "linux" or OS == "android"', {
     55           'sources': [
     56             'src/libusb/os/linux_udev.c',
     57             'src/libusb/os/linux_usbfs.c',
     58             'src/libusb/os/linux_usbfs.h',
     59           ],
     60           'defines': [
     61             'HAVE_LIBUDEV=1',
     62             'OS_LINUX=1',
     63             'USE_UDEV=1',
     64             '_GNU_SOURCE=1',
     65           ],
     66         }],
     67         [ 'OS == "mac"', {
     68           'sources': [
     69             'src/libusb/os/darwin_usb.c',
     70             'src/libusb/os/darwin_usb.h',
     71           ],
     72           'defines': [
     73             'OS_DARWIN=1',
     74           ],
     75         }],
     76         [ 'OS == "win"', {
     77           'sources': [
     78             'src/libusb/os/poll_windows.c',
     79             'src/libusb/os/poll_windows.h',
     80             'src/libusb/os/threads_windows.c',
     81             'src/libusb/os/threads_windows.h',
     82             'src/libusb/os/windows_common.h',
     83             'src/libusb/os/windows_usb.c',
     84             'src/libusb/os/windows_usb.h',
     85             'src/msvc/config.h',
     86             'src/msvc/inttypes.h',
     87             'src/msvc/stdint.h',
     88           ],
     89           'include_dirs!': [
     90             'src',
     91           ],
     92           'include_dirs': [
     93             'src/msvc',
     94           ],
     95           'msvs_disabled_warnings': [ 4267 ],
     96         }],
     97       ],
     98     },
     99   ],
    100 }
    101