| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "intent_helper/link_handler_model_impl.h", | 44 "intent_helper/link_handler_model_impl.h", |
| 45 "metrics/arc_metrics_service.cc", | 45 "metrics/arc_metrics_service.cc", |
| 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 "userdata/arc_user_data_service.cc", |
| 55 "userdata/arc_user_data_service.h", |
| 54 "window_manager/arc_window_manager_bridge.cc", | 56 "window_manager/arc_window_manager_bridge.cc", |
| 55 "window_manager/arc_window_manager_bridge.h", | 57 "window_manager/arc_window_manager_bridge.h", |
| 56 ] | 58 ] |
| 57 | 59 |
| 58 deps = [ | 60 deps = [ |
| 59 "//ash:ash", | 61 "//ash:ash", |
| 60 "//base", | 62 "//base", |
| 61 "//chromeos", | 63 "//chromeos", |
| 62 "//chromeos:power_manager_proto", | 64 "//chromeos:power_manager_proto", |
| 63 "//components/exo", | 65 "//components/exo", |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 208 |
| 207 deps = [ | 209 deps = [ |
| 208 ":arc_standalone", | 210 ":arc_standalone", |
| 209 ":arc_standalone_service", | 211 ":arc_standalone_service", |
| 210 "//base", | 212 "//base", |
| 211 "//ipc:ipc", | 213 "//ipc:ipc", |
| 212 "//ipc/mojo:mojo", | 214 "//ipc/mojo:mojo", |
| 213 "//mojo/edk/system", | 215 "//mojo/edk/system", |
| 214 ] | 216 ] |
| 215 } | 217 } |
| OLD | NEW |