| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "intent_helper/font_size_util.cc", | 43 "intent_helper/font_size_util.cc", |
| 44 "intent_helper/font_size_util.h", | 44 "intent_helper/font_size_util.h", |
| 45 "intent_helper/intent_constants.cc", | 45 "intent_helper/intent_constants.cc", |
| 46 "intent_helper/intent_constants.h", | 46 "intent_helper/intent_constants.h", |
| 47 "intent_helper/intent_filter.cc", | 47 "intent_helper/intent_filter.cc", |
| 48 "intent_helper/intent_filter.h", | 48 "intent_helper/intent_filter.h", |
| 49 "intent_helper/link_handler_model_impl.cc", | 49 "intent_helper/link_handler_model_impl.cc", |
| 50 "intent_helper/link_handler_model_impl.h", | 50 "intent_helper/link_handler_model_impl.h", |
| 51 "intent_helper/local_activity_resolver.cc", | 51 "intent_helper/local_activity_resolver.cc", |
| 52 "intent_helper/local_activity_resolver.h", | 52 "intent_helper/local_activity_resolver.h", |
| 53 "intent_helper/page_transition_util.cc", |
| 54 "intent_helper/page_transition_util.h", |
| 53 "metrics/arc_metrics_service.cc", | 55 "metrics/arc_metrics_service.cc", |
| 54 "metrics/arc_metrics_service.h", | 56 "metrics/arc_metrics_service.h", |
| 55 "metrics/oom_kills_histogram.h", | 57 "metrics/oom_kills_histogram.h", |
| 56 "metrics/oom_kills_monitor.cc", | 58 "metrics/oom_kills_monitor.cc", |
| 57 "metrics/oom_kills_monitor.h", | 59 "metrics/oom_kills_monitor.h", |
| 58 "net/arc_net_host_impl.cc", | 60 "net/arc_net_host_impl.cc", |
| 59 "net/arc_net_host_impl.h", | 61 "net/arc_net_host_impl.h", |
| 60 "obb_mounter/arc_obb_mounter_bridge.cc", | 62 "obb_mounter/arc_obb_mounter_bridge.cc", |
| 61 "obb_mounter/arc_obb_mounter_bridge.h", | 63 "obb_mounter/arc_obb_mounter_bridge.h", |
| 62 "power/arc_power_bridge.cc", | 64 "power/arc_power_bridge.cc", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "arc_bridge_service_unittest.cc", | 196 "arc_bridge_service_unittest.cc", |
| 195 "bluetooth/arc_bluetooth_bridge_unittest.cc", | 197 "bluetooth/arc_bluetooth_bridge_unittest.cc", |
| 196 "bluetooth/bluetooth_struct_traits_unittest.cc", | 198 "bluetooth/bluetooth_struct_traits_unittest.cc", |
| 197 "bluetooth/bluetooth_type_converters_unittest.cc", | 199 "bluetooth/bluetooth_type_converters_unittest.cc", |
| 198 "ime/arc_ime_service_unittest.cc", | 200 "ime/arc_ime_service_unittest.cc", |
| 199 "intent_helper/activity_icon_loader_unittest.cc", | 201 "intent_helper/activity_icon_loader_unittest.cc", |
| 200 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 202 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 201 "intent_helper/font_size_util_unittest.cc", | 203 "intent_helper/font_size_util_unittest.cc", |
| 202 "intent_helper/intent_filter_unittest.cc", | 204 "intent_helper/intent_filter_unittest.cc", |
| 203 "intent_helper/link_handler_model_impl_unittest.cc", | 205 "intent_helper/link_handler_model_impl_unittest.cc", |
| 206 "intent_helper/page_transition_util_unittest.cc", |
| 204 ] | 207 ] |
| 205 | 208 |
| 206 deps = [ | 209 deps = [ |
| 207 ":arc", | 210 ":arc", |
| 208 ":arc_bindings", | 211 ":arc_bindings", |
| 209 ":arc_test_support", | 212 ":arc_test_support", |
| 210 "//base", | 213 "//base", |
| 211 "//chromeos", | 214 "//chromeos", |
| 212 "//device/bluetooth", | 215 "//device/bluetooth", |
| 213 "//mojo/public/cpp/system:system", | 216 "//mojo/public/cpp/system:system", |
| 214 "//testing/gtest", | 217 "//testing/gtest", |
| 215 "//ui/aura", | 218 "//ui/aura", |
| 216 "//ui/base:test_support", | 219 "//ui/base:test_support", |
| 217 "//ui/base/ime", | 220 "//ui/base/ime", |
| 218 "//ui/events", | 221 "//ui/events", |
| 219 "//ui/events:dom_keycode_converter", | 222 "//ui/events:dom_keycode_converter", |
| 220 "//url:url", | 223 "//url:url", |
| 221 ] | 224 ] |
| 222 } | 225 } |
| OLD | NEW |