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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "metrics/arc_metrics_service.h", | 46 "metrics/arc_metrics_service.h", |
47 "metrics/oom_kills_histogram.h", | 47 "metrics/oom_kills_histogram.h", |
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 "power/arc_power_bridge.cc", | 52 "power/arc_power_bridge.cc", |
53 "power/arc_power_bridge.h", | 53 "power/arc_power_bridge.h", |
54 "storage_manager/arc_storage_manager.cc", | 54 "storage_manager/arc_storage_manager.cc", |
55 "storage_manager/arc_storage_manager.h", | 55 "storage_manager/arc_storage_manager.h", |
| 56 "user_data/arc_user_data_service.cc", |
| 57 "user_data/arc_user_data_service.h", |
56 "window_manager/arc_window_manager_bridge.cc", | 58 "window_manager/arc_window_manager_bridge.cc", |
57 "window_manager/arc_window_manager_bridge.h", | 59 "window_manager/arc_window_manager_bridge.h", |
58 ] | 60 ] |
59 | 61 |
60 deps = [ | 62 deps = [ |
61 "//ash:ash", | 63 "//ash:ash", |
62 "//base", | 64 "//base", |
63 "//chromeos", | 65 "//chromeos", |
64 "//chromeos:power_manager_proto", | 66 "//chromeos:power_manager_proto", |
65 "//components/exo", | 67 "//components/exo", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
209 | 211 |
210 deps = [ | 212 deps = [ |
211 ":arc_standalone", | 213 ":arc_standalone", |
212 ":arc_standalone_service", | 214 ":arc_standalone_service", |
213 "//base", | 215 "//base", |
214 "//ipc:ipc", | 216 "//ipc:ipc", |
215 "//ipc/mojo:mojo", | 217 "//ipc/mojo:mojo", |
216 "//mojo/edk/system", | 218 "//mojo/edk/system", |
217 ] | 219 ] |
218 } | 220 } |
OLD | NEW |