[Mac] Implement Ambient Light API
[chromium-blink-merge.git] / device / usb / usb.gyp
blob301bea9d1b87c961d1f7ce993764075de2749e0c
1 # Copyright 2013 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.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'targets': [
10     {
11       'target_name': 'device_usb',
12       'type': 'static_library',
13       'dependencies': [
14         '../../net/net.gyp:net',
15         '../../third_party/libusb/libusb.gyp:libusb',
16       ],
17       'include_dirs': [
18         '../..',
19       ],
20       'sources': [
21         'usb_context.cc',
22         'usb_context.h',
23         'usb_descriptors.cc',
24         'usb_descriptors.h',
25         'usb_device_impl.cc',
26         'usb_device_impl.h',
27         'usb_device.h',
28         'usb_device_filter.cc',
29         'usb_device_filter.h',
30         'usb_device_handle_impl.cc',
31         'usb_device_handle_impl.h',
32         'usb_device_handle.h',
33         'usb_error.cc',
34         'usb_error.h',
35         'usb_ids.cc',
36         'usb_ids.h',
37         'usb_service.h',
38         'usb_service_impl.cc',
39       ],
40       'actions': [
41         {
42           'action_name': 'generate_usb_ids',
43           'variables': {
44             'usb_ids_path%': '../../third_party/usb_ids/usb.ids',
45             'usb_ids_py_path': 'tools/usb_ids.py',
46           },
47           'inputs': [
48             '<(usb_ids_path)',
49             '<(usb_ids_py_path)',
50           ],
51           'outputs': [
52             '<(SHARED_INTERMEDIATE_DIR)/device/usb/usb_ids_gen.cc',
53           ],
54           'action': [
55             'python',
56             '<(usb_ids_py_path)',
57             '-i', '<(usb_ids_path)',
58             '-o', '<@(_outputs)',
59           ],
60           'process_outputs_as_sources': 1,
61         },
62       ],
63       'conditions': [
64         ['use_udev == 1', {
65           'dependencies': [
66             '../udev_linux/udev.gyp:udev_linux',
67           ],
68         }],
69         ['chromeos==1', {
70           'dependencies': [
71             '../../chromeos/chromeos.gyp:chromeos',
72           ],
73         }],
74       ]
75     },
76   ],