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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 static_library("arc") { | 8 static_library("arc") { |
9 sources = [ | 9 sources = [ |
10 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 "metrics/oom_kills_monitor.cc", | 48 "metrics/oom_kills_monitor.cc", |
49 "metrics/oom_kills_monitor.h", | 49 "metrics/oom_kills_monitor.h", |
50 "net/arc_net_host_impl.cc", | 50 "net/arc_net_host_impl.cc", |
51 "net/arc_net_host_impl.h", | 51 "net/arc_net_host_impl.h", |
52 "obb_mounter/arc_obb_mounter_bridge.cc", | 52 "obb_mounter/arc_obb_mounter_bridge.cc", |
53 "obb_mounter/arc_obb_mounter_bridge.h", | 53 "obb_mounter/arc_obb_mounter_bridge.h", |
54 "power/arc_power_bridge.cc", | 54 "power/arc_power_bridge.cc", |
55 "power/arc_power_bridge.h", | 55 "power/arc_power_bridge.h", |
56 "storage_manager/arc_storage_manager.cc", | 56 "storage_manager/arc_storage_manager.cc", |
57 "storage_manager/arc_storage_manager.h", | 57 "storage_manager/arc_storage_manager.h", |
| 58 "user_data/arc_user_data_service.cc", |
| 59 "user_data/arc_user_data_service.h", |
58 "window_manager/arc_window_manager_bridge.cc", | 60 "window_manager/arc_window_manager_bridge.cc", |
59 "window_manager/arc_window_manager_bridge.h", | 61 "window_manager/arc_window_manager_bridge.h", |
60 ] | 62 ] |
61 | 63 |
62 deps = [ | 64 deps = [ |
63 "//ash:ash", | 65 "//ash:ash", |
64 "//base", | 66 "//base", |
65 "//chromeos", | 67 "//chromeos", |
66 "//chromeos:power_manager_proto", | 68 "//chromeos:power_manager_proto", |
67 "//components/exo", | 69 "//components/exo", |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 | 221 |
220 deps = [ | 222 deps = [ |
221 ":arc_standalone", | 223 ":arc_standalone", |
222 ":arc_standalone_service", | 224 ":arc_standalone_service", |
223 "//base", | 225 "//base", |
224 "//ipc:ipc", | 226 "//ipc:ipc", |
225 "//ipc/mojo:mojo", | 227 "//ipc/mojo:mojo", |
226 "//mojo/edk/system", | 228 "//mojo/edk/system", |
227 ] | 229 ] |
228 } | 230 } |
OLD | NEW |