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/arc_metrics_service.h", | 48 "metrics/arc_metrics_service.h", |
49 "metrics/oom_kills_histogram.h", | 49 "metrics/oom_kills_histogram.h", |
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 "set_wallpaper_delegate.h", | |
59 "storage_manager/arc_storage_manager.cc", | 58 "storage_manager/arc_storage_manager.cc", |
60 "storage_manager/arc_storage_manager.h", | 59 "storage_manager/arc_storage_manager.h", |
61 "user_data/arc_user_data_service.cc", | 60 "user_data/arc_user_data_service.cc", |
62 "user_data/arc_user_data_service.h", | 61 "user_data/arc_user_data_service.h", |
63 ] | 62 ] |
64 | 63 |
65 deps = [ | 64 deps = [ |
66 ":arc_base", | 65 ":arc_base", |
67 "//ash:ash", | 66 "//ash:ash", |
68 "//base", | 67 "//base", |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
273 ] | 272 ] |
274 | 273 |
275 deps = [ | 274 deps = [ |
276 ":arc_standalone", | 275 ":arc_standalone", |
277 ":arc_standalone_service", | 276 ":arc_standalone_service", |
278 "//base", | 277 "//base", |
279 "//ipc:ipc", | 278 "//ipc:ipc", |
280 "//mojo/edk/system", | 279 "//mojo/edk/system", |
281 ] | 280 ] |
282 } | 281 } |
OLD | NEW |