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 "auth/arc_auth_service.h", | 17 "auth/arc_auth_service.h", |
18 "input/arc_input_bridge.h", | 18 "input/arc_input_bridge.h", |
19 "input/arc_input_bridge_impl.cc", | 19 "input/arc_input_bridge_impl.cc", |
20 "input/arc_input_bridge_impl.h", | 20 "input/arc_input_bridge_impl.h", |
21 "power/arc_power_bridge.cc", | 21 "power/arc_power_bridge.cc", |
22 "power/arc_power_bridge.h", | 22 "power/arc_power_bridge.h", |
23 "settings/arc_settings_bridge.cc", | 23 "settings/arc_settings_bridge.cc", |
24 "settings/arc_settings_bridge.h", | 24 "settings/arc_settings_bridge.h", |
| 25 "video/arc_video_bridge.cc", |
| 26 "video/arc_video_bridge.h", |
| 27 "video/video_host_delegate.h", |
25 ] | 28 ] |
26 | 29 |
27 deps = [ | 30 deps = [ |
28 "//base", | 31 "//base", |
29 "//base:prefs", | 32 "//base:prefs", |
30 "//chromeos", | 33 "//chromeos", |
31 "//chromeos:power_manager_proto", | 34 "//chromeos:power_manager_proto", |
32 "//ipc:ipc", | 35 "//ipc:ipc", |
33 "//ipc/mojo:mojo", | 36 "//ipc/mojo:mojo", |
34 "//third_party/mojo/src/mojo/edk/system", | 37 "//third_party/mojo/src/mojo/edk/system", |
(...skipping 10 matching lines...) Expand all Loading... |
45 mojom("arc_bindings") { | 48 mojom("arc_bindings") { |
46 sources = [ | 49 sources = [ |
47 "common/app.mojom", | 50 "common/app.mojom", |
48 "common/arc_bridge.mojom", | 51 "common/arc_bridge.mojom", |
49 "common/auth.mojom", | 52 "common/auth.mojom", |
50 "common/input.mojom", | 53 "common/input.mojom", |
51 "common/notifications.mojom", | 54 "common/notifications.mojom", |
52 "common/power.mojom", | 55 "common/power.mojom", |
53 "common/process.mojom", | 56 "common/process.mojom", |
54 "common/settings.mojom", | 57 "common/settings.mojom", |
| 58 "common/video.mojom", |
55 ] | 59 ] |
56 } | 60 } |
57 | 61 |
58 static_library("arc_test_support") { | 62 static_library("arc_test_support") { |
59 testonly = true | 63 testonly = true |
60 sources = [ | 64 sources = [ |
61 "test/fake_app_instance.cc", | 65 "test/fake_app_instance.cc", |
62 "test/fake_app_instance.h", | 66 "test/fake_app_instance.h", |
63 "test/fake_arc_bridge_instance.cc", | 67 "test/fake_arc_bridge_instance.cc", |
64 "test/fake_arc_bridge_instance.h", | 68 "test/fake_arc_bridge_instance.h", |
(...skipping 23 matching lines...) Expand all Loading... |
88 "//chromeos", | 92 "//chromeos", |
89 "//ipc/mojo:mojo", | 93 "//ipc/mojo:mojo", |
90 "//mojo/public/cpp/environment:environment", | 94 "//mojo/public/cpp/environment:environment", |
91 "//mojo/public/cpp/system:system", | 95 "//mojo/public/cpp/system:system", |
92 "//testing/gtest", | 96 "//testing/gtest", |
93 "//ui/aura", | 97 "//ui/aura", |
94 "//ui/events", | 98 "//ui/events", |
95 "//ui/events:dom_keycode_converter", | 99 "//ui/events:dom_keycode_converter", |
96 ] | 100 ] |
97 } | 101 } |
OLD | NEW |