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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 "metrics/oom_kills_monitor.cc", | 50 "metrics/oom_kills_monitor.cc", |
51 "metrics/oom_kills_monitor.h", | 51 "metrics/oom_kills_monitor.h", |
52 "net/arc_net_host_impl.cc", | 52 "net/arc_net_host_impl.cc", |
53 "net/arc_net_host_impl.h", | 53 "net/arc_net_host_impl.h", |
54 "obb_mounter/arc_obb_mounter_bridge.cc", | 54 "obb_mounter/arc_obb_mounter_bridge.cc", |
55 "obb_mounter/arc_obb_mounter_bridge.h", | 55 "obb_mounter/arc_obb_mounter_bridge.h", |
56 "power/arc_power_bridge.cc", | 56 "power/arc_power_bridge.cc", |
57 "power/arc_power_bridge.h", | 57 "power/arc_power_bridge.h", |
58 "storage_manager/arc_storage_manager.cc", | 58 "storage_manager/arc_storage_manager.cc", |
59 "storage_manager/arc_storage_manager.h", | 59 "storage_manager/arc_storage_manager.h", |
| 60 "user_data/arc_user_data_service.cc", |
| 61 "user_data/arc_user_data_service.h", |
60 "window_manager/arc_window_manager_bridge.cc", | 62 "window_manager/arc_window_manager_bridge.cc", |
61 "window_manager/arc_window_manager_bridge.h", | 63 "window_manager/arc_window_manager_bridge.h", |
62 ] | 64 ] |
63 | 65 |
64 deps = [ | 66 deps = [ |
65 "//ash:ash", | 67 "//ash:ash", |
66 "//base", | 68 "//base", |
67 "//chromeos", | 69 "//chromeos", |
68 "//chromeos:power_manager_proto", | 70 "//chromeos:power_manager_proto", |
69 "//components/exo", | 71 "//components/exo", |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 | 226 |
225 deps = [ | 227 deps = [ |
226 ":arc_standalone", | 228 ":arc_standalone", |
227 ":arc_standalone_service", | 229 ":arc_standalone_service", |
228 "//base", | 230 "//base", |
229 "//ipc:ipc", | 231 "//ipc:ipc", |
230 "//ipc/mojo:mojo", | 232 "//ipc/mojo:mojo", |
231 "//mojo/edk/system", | 233 "//mojo/edk/system", |
232 ] | 234 ] |
233 } | 235 } |
OLD | NEW |