| 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 24 matching lines...) Expand all Loading... |
| 35 "ime/arc_ime_service.cc", | 35 "ime/arc_ime_service.cc", |
| 36 "ime/arc_ime_service.h", | 36 "ime/arc_ime_service.h", |
| 37 "intent_helper/activity_icon_loader.cc", | 37 "intent_helper/activity_icon_loader.cc", |
| 38 "intent_helper/activity_icon_loader.h", | 38 "intent_helper/activity_icon_loader.h", |
| 39 "intent_helper/arc_intent_helper_bridge.cc", | 39 "intent_helper/arc_intent_helper_bridge.cc", |
| 40 "intent_helper/arc_intent_helper_bridge.h", | 40 "intent_helper/arc_intent_helper_bridge.h", |
| 41 "intent_helper/font_size_util.cc", | 41 "intent_helper/font_size_util.cc", |
| 42 "intent_helper/font_size_util.h", | 42 "intent_helper/font_size_util.h", |
| 43 "intent_helper/link_handler_model_impl.cc", | 43 "intent_helper/link_handler_model_impl.cc", |
| 44 "intent_helper/link_handler_model_impl.h", | 44 "intent_helper/link_handler_model_impl.h", |
| 45 "intent_helper/local_activity_resolver.cc", |
| 46 "intent_helper/local_activity_resolver.h", |
| 45 "metrics/arc_metrics_service.cc", | 47 "metrics/arc_metrics_service.cc", |
| 46 "metrics/arc_metrics_service.h", | 48 "metrics/arc_metrics_service.h", |
| 47 "metrics/oom_kills_histogram.h", | 49 "metrics/oom_kills_histogram.h", |
| 48 "metrics/oom_kills_monitor.cc", | 50 "metrics/oom_kills_monitor.cc", |
| 49 "metrics/oom_kills_monitor.h", | 51 "metrics/oom_kills_monitor.h", |
| 50 "net/arc_net_host_impl.cc", | 52 "net/arc_net_host_impl.cc", |
| 51 "net/arc_net_host_impl.h", | 53 "net/arc_net_host_impl.h", |
| 52 "obb_mounter/arc_obb_mounter_bridge.cc", | 54 "obb_mounter/arc_obb_mounter_bridge.cc", |
| 53 "obb_mounter/arc_obb_mounter_bridge.h", | 55 "obb_mounter/arc_obb_mounter_bridge.h", |
| 54 "power/arc_power_bridge.cc", | 56 "power/arc_power_bridge.cc", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 | 220 |
| 219 deps = [ | 221 deps = [ |
| 220 ":arc_standalone", | 222 ":arc_standalone", |
| 221 ":arc_standalone_service", | 223 ":arc_standalone_service", |
| 222 "//base", | 224 "//base", |
| 223 "//ipc:ipc", | 225 "//ipc:ipc", |
| 224 "//ipc/mojo:mojo", | 226 "//ipc/mojo:mojo", |
| 225 "//mojo/edk/system", | 227 "//mojo/edk/system", |
| 226 ] | 228 ] |
| 227 } | 229 } |
| OLD | NEW |