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
|
# 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',
'include_dirs': [
'../..',
],
'sources': [
'usb_ids.cc',
'usb_ids.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,
},
],
},
],
}
|