summaryrefslogtreecommitdiffstats
path: root/device/usb/usb.gyp
blob: a553f575b5af5d73159484f567f6c3580b5f9800 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# Copyright 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'variables': {
    'chromium_code': 1,
  },
  'targets': [
    {
      'target_name': 'device_usb',
      'type': 'static_library',
      'dependencies': [
        'device_usb_mojo_bindings',
        '../../components/components.gyp:device_event_log_component',
        '../../net/net.gyp:net',
        '../../third_party/libusb/libusb.gyp:libusb',
        '../core/core.gyp:device_core',
      ],
      'include_dirs': [
        '../..',
      ],
      'sources': [
        'android/usb_jni_registrar.cc',
        'android/usb_jni_registrar.h',
        'mojo/device_impl.cc',
        'mojo/device_impl.h',
        'mojo/device_manager_impl.cc',
        'mojo/device_manager_impl.h',
        'mojo/type_converters.cc',
        'mojo/type_converters.h',
        'mojo/permission_provider.cc',
        'mojo/permission_provider.h',
        'usb_configuration_android.cc',
        'usb_configuration_android.h',
        'usb_context.cc',
        'usb_context.h',
        'usb_descriptors.cc',
        'usb_descriptors.h',
        'usb_device_impl.cc',
        'usb_device_impl.h',
        'usb_device.cc',
        'usb_device.h',
        'usb_device_android.cc',
        'usb_device_android.h',
        'usb_device_filter.cc',
        'usb_device_filter.h',
        'usb_device_handle_impl.cc',
        'usb_device_handle_impl.h',
        'usb_device_handle.cc',
        'usb_device_handle.h',
        'usb_endpoint_android.cc',
        'usb_endpoint_android.h',
        'usb_error.cc',
        'usb_error.h',
        'usb_ids.cc',
        'usb_ids.h',
        'usb_interface_android.cc',
        'usb_interface_android.h',
        'usb_service.cc',
        'usb_service.h',
        'usb_service_android.cc',
        'usb_service_android.h',
        'usb_service_impl.cc',
        'usb_service_impl.h',
        'webusb_descriptors.cc',
        'webusb_descriptors.h',
      ],
      'actions': [
        {
          'action_name': 'generate_usb_ids',
          'variables': {
            'usb_ids_path%': '../../third_party/usb_ids/usb.ids',
            'usb_ids_py_path': 'tools/usb_ids.py',
          },
          'inputs': [
            '<(usb_ids_path)',
            '<(usb_ids_py_path)',
          ],
          'outputs': [
            '<(SHARED_INTERMEDIATE_DIR)/device/usb/usb_ids_gen.cc',
          ],
          'action': [
            'python',
            '<(usb_ids_py_path)',
            '-i', '<(usb_ids_path)',
            '-o', '<@(_outputs)',
          ],
          'process_outputs_as_sources': 1,
        },
      ],
      'conditions': [
        ['use_udev == 1', {
          'dependencies': [
            '../udev_linux/udev.gyp:udev_linux',
          ],
        }],
        ['OS=="android"', {
          'dependencies': [
            'device_usb_java',
            'device_usb_jni_headers',
          ],
          'dependencies!': [
            '../../third_party/libusb/libusb.gyp:libusb',
          ],
          # These sources are libusb-specific.
          'sources!': [
            'usb_context.cc',
            'usb_context.h',
            'usb_device_handle_impl.cc',
            'usb_device_handle_impl.h',
            'usb_device_impl.cc',
            'usb_device_impl.h',
            'usb_error.cc',
            'usb_error.h',
            'usb_service_impl.cc',
            'usb_service_impl.h',
          ]
        }],
        ['chromeos==1', {
          'dependencies': [
            '../../chromeos/chromeos.gyp:chromeos',
          ],
        }],
      ]
    },
    {
      'target_name': 'device_usb_mojo_bindings',
      'type': 'static_library',
      'sources': [
        'public/interfaces/device.mojom',
        'public/interfaces/device_manager.mojom',
      ],
      'includes': [
        '../../mojo/mojom_bindings_generator.gypi',
      ],
    },
    {
      'target_name': 'device_usb_mocks',
      'type': 'static_library',
      'include_dirs': [
        '../..',
      ],
      'dependencies': [
        '../../testing/gmock.gyp:gmock',
        'device_usb',
      ],
      'sources': [
        'mock_usb_device.cc',
        'mock_usb_device.h',
        'mock_usb_device_handle.cc',
        'mock_usb_device_handle.h',
        'mock_usb_service.cc',
        'mock_usb_service.h',
      ],
    },
  ],
  'conditions': [
    ['OS == "android"', {
      'targets': [
        {
          'target_name': 'device_usb_jni_headers',
          'type': 'none',
          'sources': [
            'android/java/src/org/chromium/device/usb/ChromeUsbConfiguration.java',
            'android/java/src/org/chromium/device/usb/ChromeUsbDevice.java',
            'android/java/src/org/chromium/device/usb/ChromeUsbEndpoint.java',
            'android/java/src/org/chromium/device/usb/ChromeUsbInterface.java',
            'android/java/src/org/chromium/device/usb/ChromeUsbService.java',
          ],
          'variables': {
            'jni_gen_package': 'device_usb',
          },
          'includes': [ '../../build/jni_generator.gypi' ],
        },
        {
          'target_name': 'device_usb_java',
          'type': 'none',
          'dependencies': [
            'usb_descriptors_javagen',
            '../../base/base.gyp:base',
          ],
          'variables': {
            'java_in_dir': '../../device/usb/android/java',
          },
          'includes': [ '../../build/java.gypi' ],
        },
        {
          'target_name': 'usb_descriptors_javagen',
          'type': 'none',
          'variables': {
            'source_file': 'usb_descriptors.h',
          },
          'includes': [ '../../build/android/java_cpp_enum.gypi' ],
        },
      ],
    }],
  ],
}