Suppress -Woverloaded-virtual for mesa's glsl library.
[chromium-blink-merge.git] / device / usb / usb.gyp
blob251353568d2055b7e8bcccad9f87d98365212a96
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         '../../components/components.gyp:device_event_log_component',
15         '../../net/net.gyp:net',
16         '../../third_party/libusb/libusb.gyp:libusb',
17       ],
18       'include_dirs': [
19         '../..',
20       ],
21       'sources': [
22         'usb_context.cc',
23         'usb_context.h',
24         'usb_descriptors.cc',
25         'usb_descriptors.h',
26         'usb_device_impl.cc',
27         'usb_device_impl.h',
28         'usb_device.cc',
29         'usb_device.h',
30         'usb_device_filter.cc',
31         'usb_device_filter.h',
32         'usb_device_handle_impl.cc',
33         'usb_device_handle_impl.h',
34         'usb_device_handle.h',
35         'usb_error.cc',
36         'usb_error.h',
37         'usb_ids.cc',
38         'usb_ids.h',
39         'usb_service.cc',
40         'usb_service.h',
41         'usb_service_impl.cc',
42         'usb_service_impl.h',
43         'webusb_descriptors.cc',
44         'webusb_descriptors.h',
45       ],
46       'actions': [
47         {
48           'action_name': 'generate_usb_ids',
49           'variables': {
50             'usb_ids_path%': '../../third_party/usb_ids/usb.ids',
51             'usb_ids_py_path': 'tools/usb_ids.py',
52           },
53           'inputs': [
54             '<(usb_ids_path)',
55             '<(usb_ids_py_path)',
56           ],
57           'outputs': [
58             '<(SHARED_INTERMEDIATE_DIR)/device/usb/usb_ids_gen.cc',
59           ],
60           'action': [
61             'python',
62             '<(usb_ids_py_path)',
63             '-i', '<(usb_ids_path)',
64             '-o', '<@(_outputs)',
65           ],
66           'process_outputs_as_sources': 1,
67         },
68       ],
69       'conditions': [
70         ['use_udev == 1', {
71           'dependencies': [
72             '../udev_linux/udev.gyp:udev_linux',
73           ],
74         }],
75         ['chromeos==1', {
76           'dependencies': [
77             '../../chromeos/chromeos.gyp:chromeos',
78           ],
79         }],
80       ]
81     },
82     {
83       'target_name': 'device_usb_mocks',
84       'type': 'static_library',
85       'include_dirs': [
86         '../..',
87       ],
88       'dependencies': [
89         '../../testing/gmock.gyp:gmock',
90         'device_usb',
91       ],
92       'sources': [
93         'mock_usb_device.cc',
94         'mock_usb_device.h',
95         'mock_usb_device_handle.cc',
96         'mock_usb_device_handle.h',
97         'mock_usb_service.cc',
98         'mock_usb_service.h',
99       ],
100     },
101   ],