OLD | NEW |
| (Empty) |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'variables': { | |
7 'chromium_code': 1, | |
8 }, | |
9 'targets': [ | |
10 { | |
11 'target_name': 'devices_app_lib', | |
12 'type': 'static_library', | |
13 'include_dirs': [ | |
14 '../..', | |
15 ], | |
16 'sources': [ | |
17 'devices_app.cc', | |
18 'devices_app.h', | |
19 ], | |
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_base', | |
24 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | |
25 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | |
26 ], | |
27 'export_dependent_settings': [ | |
28 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | |
29 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | |
30 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | |
31 ], | |
32 }, | |
33 ], | |
34 } | |
OLD | NEW |