| 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", |
| 58 "storage_manager/arc_storage_manager.cc", | 59 "storage_manager/arc_storage_manager.cc", |
| 59 "storage_manager/arc_storage_manager.h", | 60 "storage_manager/arc_storage_manager.h", |
| 60 "user_data/arc_user_data_service.cc", | 61 "user_data/arc_user_data_service.cc", |
| 61 "user_data/arc_user_data_service.h", | 62 "user_data/arc_user_data_service.h", |
| 62 "window_manager/arc_window_manager_bridge.cc", | 63 "window_manager/arc_window_manager_bridge.cc", |
| 63 "window_manager/arc_window_manager_bridge.h", | 64 "window_manager/arc_window_manager_bridge.h", |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 deps = [ | 67 deps = [ |
| 67 "//ash:ash", | 68 "//ash:ash", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 | 230 |
| 230 deps = [ | 231 deps = [ |
| 231 ":arc_standalone", | 232 ":arc_standalone", |
| 232 ":arc_standalone_service", | 233 ":arc_standalone_service", |
| 233 "//base", | 234 "//base", |
| 234 "//ipc:ipc", | 235 "//ipc:ipc", |
| 235 "//ipc/mojo:mojo", | 236 "//ipc/mojo:mojo", |
| 236 "//mojo/edk/system", | 237 "//mojo/edk/system", |
| 237 ] | 238 ] |
| 238 } | 239 } |
| OLD | NEW |