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", |
(...skipping 10 matching lines...) Expand all Loading... |
21 "ime/arc_ime_bridge.h", | 21 "ime/arc_ime_bridge.h", |
22 "ime/arc_ime_ipc_host.cc", | 22 "ime/arc_ime_ipc_host.cc", |
23 "ime/arc_ime_ipc_host.h", | 23 "ime/arc_ime_ipc_host.h", |
24 "input/arc_input_bridge.h", | 24 "input/arc_input_bridge.h", |
25 "input/arc_input_bridge_impl.cc", | 25 "input/arc_input_bridge_impl.cc", |
26 "input/arc_input_bridge_impl.h", | 26 "input/arc_input_bridge_impl.h", |
27 "intent_helper/arc_intent_helper_bridge.cc", | 27 "intent_helper/arc_intent_helper_bridge.cc", |
28 "intent_helper/arc_intent_helper_bridge.h", | 28 "intent_helper/arc_intent_helper_bridge.h", |
29 "power/arc_power_bridge.cc", | 29 "power/arc_power_bridge.cc", |
30 "power/arc_power_bridge.h", | 30 "power/arc_power_bridge.h", |
31 "settings/arc_settings_bridge.cc", | |
32 "settings/arc_settings_bridge.h", | |
33 "video/arc_video_bridge.cc", | 31 "video/arc_video_bridge.cc", |
34 "video/arc_video_bridge.h", | 32 "video/arc_video_bridge.h", |
35 "video/video_host_delegate.h", | 33 "video/video_host_delegate.h", |
36 ] | 34 ] |
37 | 35 |
38 deps = [ | 36 deps = [ |
39 "//base", | 37 "//base", |
40 "//base:prefs", | 38 "//base:prefs", |
41 "//chromeos", | 39 "//chromeos", |
42 "//chromeos:power_manager_proto", | 40 "//chromeos:power_manager_proto", |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 "//chromeos", | 105 "//chromeos", |
108 "//ipc/mojo:mojo", | 106 "//ipc/mojo:mojo", |
109 "//mojo/public/cpp/environment:environment", | 107 "//mojo/public/cpp/environment:environment", |
110 "//mojo/public/cpp/system:system", | 108 "//mojo/public/cpp/system:system", |
111 "//testing/gtest", | 109 "//testing/gtest", |
112 "//ui/aura", | 110 "//ui/aura", |
113 "//ui/events", | 111 "//ui/events", |
114 "//ui/events:dom_keycode_converter", | 112 "//ui/events:dom_keycode_converter", |
115 ] | 113 ] |
116 } | 114 } |
OLD | NEW |