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 "arc_video_service.cc", |
| 18 "arc_video_service.h", |
17 "input/arc_input_bridge.h", | 19 "input/arc_input_bridge.h", |
18 "input/arc_input_bridge_impl.cc", | 20 "input/arc_input_bridge_impl.cc", |
19 "input/arc_input_bridge_impl.h", | 21 "input/arc_input_bridge_impl.h", |
20 "settings/arc_settings_bridge.cc", | 22 "settings/arc_settings_bridge.cc", |
21 "settings/arc_settings_bridge.h", | 23 "settings/arc_settings_bridge.h", |
22 ] | 24 ] |
23 | 25 |
24 deps = [ | 26 deps = [ |
25 "//base", | 27 "//base", |
26 "//base:prefs", | 28 "//base:prefs", |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "//chromeos", | 76 "//chromeos", |
75 "//ipc/mojo:mojo", | 77 "//ipc/mojo:mojo", |
76 "//mojo/public/cpp/environment:environment", | 78 "//mojo/public/cpp/environment:environment", |
77 "//mojo/public/cpp/system:system", | 79 "//mojo/public/cpp/system:system", |
78 "//testing/gtest", | 80 "//testing/gtest", |
79 "//ui/aura", | 81 "//ui/aura", |
80 "//ui/events", | 82 "//ui/events", |
81 "//ui/events:dom_keycode_converter", | 83 "//ui/events:dom_keycode_converter", |
82 ] | 84 ] |
83 } | 85 } |
OLD | NEW |