OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # GN version: //components/arc | 8 # GN version: //components/arc |
9 'target_name': 'arc', | 9 'target_name': 'arc', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'include_dirs': [ | 11 'include_dirs': [ |
12 '..', | 12 '..', |
13 ], | 13 ], |
14 'dependencies': [ | 14 'dependencies': [ |
15 'arc_mojo_bindings', | 15 'arc_mojo_bindings', |
16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
17 '../chromeos/chromeos.gyp:chromeos', | 17 '../chromeos/chromeos.gyp:chromeos', |
18 '../ipc/ipc.gyp:ipc', | 18 '../ipc/ipc.gyp:ipc', |
| 19 '../ui/aura/aura.gyp:aura', |
| 20 '../ui/events/events.gyp:events_base', |
19 ], | 21 ], |
20 'sources': [ | 22 'sources': [ |
21 'arc/arc_bridge_bootstrap.cc', | 23 'arc/arc_bridge_bootstrap.cc', |
22 'arc/arc_bridge_bootstrap.h', | 24 'arc/arc_bridge_bootstrap.h', |
23 'arc/arc_bridge_service.cc', | 25 'arc/arc_bridge_service.cc', |
24 'arc/arc_bridge_service.h', | 26 'arc/arc_bridge_service.h', |
25 'arc/arc_bridge_service_impl.cc', | 27 'arc/arc_bridge_service_impl.cc', |
26 'arc/arc_bridge_service_impl.h', | 28 'arc/arc_bridge_service_impl.h', |
27 'arc/arc_service_manager.cc', | 29 'arc/arc_service_manager.cc', |
28 'arc/arc_service_manager.h', | 30 'arc/arc_service_manager.h', |
| 31 'arc/input/arc_input_bridge.h', |
| 32 'arc/input/arc_input_bridge_impl.cc', |
| 33 'arc/input/arc_input_bridge_impl.h', |
29 ], | 34 ], |
30 }, | 35 }, |
31 { | 36 { |
32 # GN version: //components/arc_test_support | 37 # GN version: //components/arc_test_support |
33 'target_name': 'arc_test_support', | 38 'target_name': 'arc_test_support', |
34 'type': 'static_library', | 39 'type': 'static_library', |
35 'include_dirs': [ | 40 'include_dirs': [ |
36 '..', | 41 '..', |
37 ], | 42 ], |
38 'dependencies': [ | 43 'dependencies': [ |
(...skipping 13 matching lines...) Expand all Loading... |
52 'type': 'static_library', | 57 'type': 'static_library', |
53 'includes': [ | 58 'includes': [ |
54 '../third_party/mojo/mojom_bindings_generator.gypi', | 59 '../third_party/mojo/mojom_bindings_generator.gypi', |
55 ], | 60 ], |
56 'sources': [ | 61 'sources': [ |
57 'arc/common/arc_bridge.mojom', | 62 'arc/common/arc_bridge.mojom', |
58 ], | 63 ], |
59 }, | 64 }, |
60 ], | 65 ], |
61 } | 66 } |
OLD | NEW |