| 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 16 matching lines...) Expand all Loading... |
| 27 "ime/arc_ime_bridge_impl.cc", | 27 "ime/arc_ime_bridge_impl.cc", |
| 28 "ime/arc_ime_bridge_impl.h", | 28 "ime/arc_ime_bridge_impl.h", |
| 29 "ime/arc_ime_service.cc", | 29 "ime/arc_ime_service.cc", |
| 30 "ime/arc_ime_service.h", | 30 "ime/arc_ime_service.h", |
| 31 "intent_helper/activity_icon_loader.cc", | 31 "intent_helper/activity_icon_loader.cc", |
| 32 "intent_helper/activity_icon_loader.h", | 32 "intent_helper/activity_icon_loader.h", |
| 33 "intent_helper/arc_intent_helper_bridge.cc", | 33 "intent_helper/arc_intent_helper_bridge.cc", |
| 34 "intent_helper/arc_intent_helper_bridge.h", | 34 "intent_helper/arc_intent_helper_bridge.h", |
| 35 "intent_helper/font_size_util.cc", | 35 "intent_helper/font_size_util.cc", |
| 36 "intent_helper/font_size_util.h", | 36 "intent_helper/font_size_util.h", |
| 37 "intent_helper/intent_filter.cc", |
| 38 "intent_helper/intent_filter.h", |
| 37 "intent_helper/link_handler_model_impl.cc", | 39 "intent_helper/link_handler_model_impl.cc", |
| 38 "intent_helper/link_handler_model_impl.h", | 40 "intent_helper/link_handler_model_impl.h", |
| 39 "intent_helper/local_activity_resolver.cc", | 41 "intent_helper/local_activity_resolver.cc", |
| 40 "intent_helper/local_activity_resolver.h", | 42 "intent_helper/local_activity_resolver.h", |
| 41 "metrics/arc_metrics_service.cc", | 43 "metrics/arc_metrics_service.cc", |
| 42 "metrics/arc_metrics_service.h", | 44 "metrics/arc_metrics_service.h", |
| 43 "metrics/oom_kills_histogram.h", | 45 "metrics/oom_kills_histogram.h", |
| 44 "metrics/oom_kills_monitor.cc", | 46 "metrics/oom_kills_monitor.cc", |
| 45 "metrics/oom_kills_monitor.h", | 47 "metrics/oom_kills_monitor.h", |
| 46 "net/arc_net_host_impl.cc", | 48 "net/arc_net_host_impl.cc", |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 ] | 257 ] |
| 256 | 258 |
| 257 deps = [ | 259 deps = [ |
| 258 ":arc_standalone", | 260 ":arc_standalone", |
| 259 ":arc_standalone_service", | 261 ":arc_standalone_service", |
| 260 "//base", | 262 "//base", |
| 261 "//ipc:ipc", | 263 "//ipc:ipc", |
| 262 "//mojo/edk/system", | 264 "//mojo/edk/system", |
| 263 ] | 265 ] |
| 264 } | 266 } |
| OLD | NEW |