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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
6 | 6 |
7 static_library("arc") { | 7 static_library("arc") { |
8 sources = [ | 8 sources = [ |
9 "arc_bridge_bootstrap.cc", | 9 "arc_bridge_bootstrap.cc", |
10 "arc_bridge_bootstrap.h", | 10 "arc_bridge_bootstrap.h", |
11 "arc_bridge_service.cc", | 11 "arc_bridge_service.cc", |
12 "arc_bridge_service.h", | 12 "arc_bridge_service.h", |
13 "arc_bridge_service_impl.cc", | 13 "arc_bridge_service_impl.cc", |
14 "arc_bridge_service_impl.h", | 14 "arc_bridge_service_impl.h", |
15 "arc_service_manager.cc", | 15 "arc_service_manager.cc", |
16 "arc_service_manager.h", | 16 "arc_service_manager.h", |
| 17 "input/arc_input_bridge.h", |
| 18 "input/arc_input_bridge_impl.cc", |
| 19 "input/arc_input_bridge_impl.h", |
17 ] | 20 ] |
18 | 21 |
19 deps = [ | 22 deps = [ |
20 ":arc_bindings", | 23 ":arc_bindings", |
21 "//base", | 24 "//base", |
22 "//base:prefs", | 25 "//base:prefs", |
23 "//chromeos", | 26 "//chromeos", |
24 "//ipc:ipc", | 27 "//ipc:ipc", |
25 "//ipc/mojo:mojo", | 28 "//ipc/mojo:mojo", |
26 "//third_party/mojo/src/mojo/edk/system", | 29 "//third_party/mojo/src/mojo/edk/system", |
| 30 "//ui/aura", |
| 31 "//ui/events", |
| 32 "//ui/events:dom_keycode_converter", |
27 ] | 33 ] |
28 } | 34 } |
29 | 35 |
30 mojom("arc_bindings") { | 36 mojom("arc_bindings") { |
31 sources = [ | 37 sources = [ |
32 "common/arc_bridge.mojom", | 38 "common/arc_bridge.mojom", |
33 ] | 39 ] |
34 } | 40 } |
35 | 41 |
36 static_library("arc_test_support") { | 42 static_library("arc_test_support") { |
(...skipping 21 matching lines...) Expand all Loading... |
58 deps = [ | 64 deps = [ |
59 ":arc", | 65 ":arc", |
60 ":arc_bindings", | 66 ":arc_bindings", |
61 ":arc_test_support", | 67 ":arc_test_support", |
62 "//base", | 68 "//base", |
63 "//chromeos", | 69 "//chromeos", |
64 "//ipc/mojo:mojo", | 70 "//ipc/mojo:mojo", |
65 "//mojo/public/cpp/environment:environment", | 71 "//mojo/public/cpp/environment:environment", |
66 "//mojo/public/cpp/system:system", | 72 "//mojo/public/cpp/system:system", |
67 "//testing/gtest", | 73 "//testing/gtest", |
| 74 "//ui/aura", |
| 75 "//ui/events", |
| 76 "//ui/events:dom_keycode_converter", |
68 ] | 77 ] |
69 } | 78 } |
OLD | NEW |