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_opt_in_service.cc", |
| 16 "arc_opt_in_service.h", |
15 "arc_service_manager.cc", | 17 "arc_service_manager.cc", |
16 "arc_service_manager.h", | 18 "arc_service_manager.h", |
17 "auth/arc_auth_service.h", | 19 "auth/arc_auth_service.h", |
18 "clipboard/arc_clipboard_bridge.cc", | 20 "clipboard/arc_clipboard_bridge.cc", |
19 "clipboard/arc_clipboard_bridge.h", | 21 "clipboard/arc_clipboard_bridge.h", |
20 "ime/arc_ime_bridge.cc", | 22 "ime/arc_ime_bridge.cc", |
21 "ime/arc_ime_bridge.h", | 23 "ime/arc_ime_bridge.h", |
22 "ime/arc_ime_ipc_host.h", | 24 "ime/arc_ime_ipc_host.h", |
23 "ime/arc_ime_ipc_host_impl.cc", | 25 "ime/arc_ime_ipc_host_impl.cc", |
24 "ime/arc_ime_ipc_host_impl.h", | 26 "ime/arc_ime_ipc_host_impl.h", |
25 "input/arc_input_bridge.h", | 27 "input/arc_input_bridge.h", |
26 "input/arc_input_bridge_impl.cc", | 28 "input/arc_input_bridge_impl.cc", |
27 "input/arc_input_bridge_impl.h", | 29 "input/arc_input_bridge_impl.h", |
28 "intent_helper/arc_intent_helper_bridge.cc", | 30 "intent_helper/arc_intent_helper_bridge.cc", |
29 "intent_helper/arc_intent_helper_bridge.h", | 31 "intent_helper/arc_intent_helper_bridge.h", |
| 32 "opt_in/arc_opt_in_manager.h", |
30 "power/arc_power_bridge.cc", | 33 "power/arc_power_bridge.cc", |
31 "power/arc_power_bridge.h", | 34 "power/arc_power_bridge.h", |
32 "settings/arc_settings_bridge.cc", | 35 "settings/arc_settings_bridge.cc", |
33 "settings/arc_settings_bridge.h", | 36 "settings/arc_settings_bridge.h", |
34 "video/arc_video_bridge.cc", | 37 "video/arc_video_bridge.cc", |
35 "video/arc_video_bridge.h", | 38 "video/arc_video_bridge.h", |
36 "video/video_host_delegate.h", | 39 "video/video_host_delegate.h", |
37 ] | 40 ] |
38 | 41 |
39 deps = [ | 42 deps = [ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 "//ipc/mojo:mojo", | 113 "//ipc/mojo:mojo", |
111 "//mojo/public/cpp/environment:environment", | 114 "//mojo/public/cpp/environment:environment", |
112 "//mojo/public/cpp/system:system", | 115 "//mojo/public/cpp/system:system", |
113 "//testing/gtest", | 116 "//testing/gtest", |
114 "//ui/aura", | 117 "//ui/aura", |
115 "//ui/base/ime", | 118 "//ui/base/ime", |
116 "//ui/events", | 119 "//ui/events", |
117 "//ui/events:dom_keycode_converter", | 120 "//ui/events:dom_keycode_converter", |
118 ] | 121 ] |
119 } | 122 } |
OLD | NEW |