Update size of Media Router route-details stop button.
[chromium-blink-merge.git] / device / devices_app / devices_app.gyp
blob4d97aa99494a9319c7e69723866f651aa850c7d5
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.
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         'usb/device_impl.cc',
20         'usb/device_impl.h',
21         'usb/device_manager_impl.cc',
22         'usb/device_manager_impl.h',
23         'usb/public/cpp/device_manager_delegate.h',
24         'usb/type_converters.cc',
25         'usb/type_converters.h',
26       ],
27       'dependencies': [
28         'device_usb_mojo_bindings_lib',
29         '<(DEPTH)/device/core/core.gyp:device_core',
30         '<(DEPTH)/device/usb/usb.gyp:device_usb',
31         '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
32         '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
33         '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
34       ],
35       'export_dependent_settings': [
36         '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
37         '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
38         '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
39       ],
40     },
41     {
42       'target_name': 'device_usb_mojo_bindings',
43       'type': 'none',
44       'variables': {
45         'mojom_files': [
46           'usb/public/interfaces/device.mojom',
47           'usb/public/interfaces/device_manager.mojom',
48         ],
49       },
50       'includes': [
51         '../../third_party/mojo/mojom_bindings_generator_explicit.gypi',
52       ],
53     },
54     {
55       'target_name': 'device_usb_mojo_bindings_lib',
56       'type': 'static_library',
57       'dependencies': [
58         'device_usb_mojo_bindings',
59       ],
60     },
61     {
62       'target_name': 'devices_app_public_cpp',
63       'type': 'static_library',
64       'sources': [
65         'public/cpp/constants.cc',
66         'public/cpp/constants.h',
67       ],
68       'dependencies': [
69         'devices_app_lib',
70       ],
71     },
72     {
73       'target_name': 'devices_app_public_cpp_factory',
74       'type': 'static_library',
75       'sources': [
76         'public/cpp/devices_app_factory.cc',
77         'public/cpp/devices_app_factory.h',
78       ],
79       'dependencies': [
80         'devices_app_lib',
81       ],
82     },
83   ],