OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 16 matching lines...) Expand all Loading... |
27 'usb_device.h', | 27 'usb_device.h', |
28 'usb_device_filter.cc', | 28 'usb_device_filter.cc', |
29 'usb_device_filter.h', | 29 'usb_device_filter.h', |
30 'usb_device_handle_impl.cc', | 30 'usb_device_handle_impl.cc', |
31 'usb_device_handle_impl.h', | 31 'usb_device_handle_impl.h', |
32 'usb_device_handle.h', | 32 'usb_device_handle.h', |
33 'usb_error.cc', | 33 'usb_error.cc', |
34 'usb_error.h', | 34 'usb_error.h', |
35 'usb_ids.cc', | 35 'usb_ids.cc', |
36 'usb_ids.h', | 36 'usb_ids.h', |
| 37 'usb_service.cc', |
37 'usb_service.h', | 38 'usb_service.h', |
38 'usb_service_impl.cc', | 39 'usb_service_impl.cc', |
| 40 'usb_service_impl.h', |
39 ], | 41 ], |
40 'actions': [ | 42 'actions': [ |
41 { | 43 { |
42 'action_name': 'generate_usb_ids', | 44 'action_name': 'generate_usb_ids', |
43 'variables': { | 45 'variables': { |
44 'usb_ids_path%': '../../third_party/usb_ids/usb.ids', | 46 'usb_ids_path%': '../../third_party/usb_ids/usb.ids', |
45 'usb_ids_py_path': 'tools/usb_ids.py', | 47 'usb_ids_py_path': 'tools/usb_ids.py', |
46 }, | 48 }, |
47 'inputs': [ | 49 'inputs': [ |
48 '<(usb_ids_path)', | 50 '<(usb_ids_path)', |
(...skipping 19 matching lines...) Expand all Loading... |
68 }], | 70 }], |
69 ['chromeos==1', { | 71 ['chromeos==1', { |
70 'dependencies': [ | 72 'dependencies': [ |
71 '../../chromeos/chromeos.gyp:chromeos', | 73 '../../chromeos/chromeos.gyp:chromeos', |
72 ], | 74 ], |
73 }], | 75 }], |
74 ] | 76 ] |
75 }, | 77 }, |
76 ], | 78 ], |
77 } | 79 } |
OLD | NEW |