OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { |
11 'target_name': 'device_core', | 11 'target_name': 'devices_app_lib', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'include_dirs': [ | 13 'include_dirs': [ |
14 '../..', | 14 '../..', |
15 ], | 15 ], |
16 'sources': [ | 16 'sources': [ |
17 'device_client.cc', | 17 'devices_app.cc', |
18 'device_client.h', | 18 'devices_app.h', |
19 'device_monitor_win.cc', | |
20 'device_monitor_win.h', | |
21 ], | 19 ], |
22 'dependencies': [ | 20 'dependencies': [ |
| 21 '<(DEPTH)/device/usb/usb.gyp:device_usb', |
| 22 '<(DEPTH)/device/usb/usb.gyp:device_usb_mojo_bindings_lib', |
| 23 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
| 24 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 25 ], |
| 26 'export_dependent_settings': [ |
| 27 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
23 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 28 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
24 ], | 29 ], |
25 }, | 30 }, |
26 ], | 31 ], |
27 } | 32 } |
OLD | NEW |