| 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_service_manager.cc", | 10 "arc_service_manager.cc", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "arc_features.cc", | 102 "arc_features.cc", |
| 103 "arc_features.h", | 103 "arc_features.h", |
| 104 "arc_service.cc", | 104 "arc_service.cc", |
| 105 "arc_service.h", | 105 "arc_service.h", |
| 106 "arc_session.cc", | 106 "arc_session.cc", |
| 107 "arc_session.h", | 107 "arc_session.h", |
| 108 "arc_session_observer.cc", | 108 "arc_session_observer.cc", |
| 109 "arc_session_observer.h", | 109 "arc_session_observer.h", |
| 110 "arc_session_runner.cc", | 110 "arc_session_runner.cc", |
| 111 "arc_session_runner.h", | 111 "arc_session_runner.h", |
| 112 "arc_util.cc", |
| 113 "arc_util.h", |
| 112 "instance_holder.h", | 114 "instance_holder.h", |
| 113 ] | 115 ] |
| 114 | 116 |
| 115 deps = [ | 117 deps = [ |
| 116 "//base", | 118 "//base", |
| 117 "//chromeos", | 119 "//chromeos", |
| 118 "//components/user_manager", | 120 "//components/user_manager", |
| 119 "//mojo/edk/system", | 121 "//mojo/edk/system", |
| 120 ] | 122 ] |
| 121 | 123 |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 "//base", | 195 "//base", |
| 194 "//mojo/common:common_base", | 196 "//mojo/common:common_base", |
| 195 ] | 197 ] |
| 196 } | 198 } |
| 197 | 199 |
| 198 source_set("unit_tests") { | 200 source_set("unit_tests") { |
| 199 testonly = true | 201 testonly = true |
| 200 sources = [ | 202 sources = [ |
| 201 "arc_service_manager_unittest.cc", | 203 "arc_service_manager_unittest.cc", |
| 202 "arc_session_runner_unittest.cc", | 204 "arc_session_runner_unittest.cc", |
| 205 "arc_util_unittest.cc", |
| 203 "bluetooth/arc_bluetooth_bridge_unittest.cc", | 206 "bluetooth/arc_bluetooth_bridge_unittest.cc", |
| 204 "bluetooth/bluetooth_struct_traits_unittest.cc", | 207 "bluetooth/bluetooth_struct_traits_unittest.cc", |
| 205 "bluetooth/bluetooth_type_converters_unittest.cc", | 208 "bluetooth/bluetooth_type_converters_unittest.cc", |
| 206 "ime/arc_ime_service_unittest.cc", | 209 "ime/arc_ime_service_unittest.cc", |
| 207 "intent_helper/activity_icon_loader_unittest.cc", | 210 "intent_helper/activity_icon_loader_unittest.cc", |
| 208 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 211 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 209 "intent_helper/font_size_util_unittest.cc", | 212 "intent_helper/font_size_util_unittest.cc", |
| 210 "intent_helper/intent_filter_unittest.cc", | 213 "intent_helper/intent_filter_unittest.cc", |
| 211 "intent_helper/link_handler_model_impl_unittest.cc", | 214 "intent_helper/link_handler_model_impl_unittest.cc", |
| 212 "intent_helper/local_activity_resolver_unittest.cc", | 215 "intent_helper/local_activity_resolver_unittest.cc", |
| 213 "intent_helper/page_transition_util_unittest.cc", | 216 "intent_helper/page_transition_util_unittest.cc", |
| 214 ] | 217 ] |
| 215 | 218 |
| 216 deps = [ | 219 deps = [ |
| 217 ":arc_test_support", | 220 ":arc_test_support", |
| 218 "//base", | 221 "//base", |
| 222 "//base/test:test_support", |
| 219 "//chromeos", | 223 "//chromeos", |
| 220 "//device/bluetooth", | 224 "//device/bluetooth", |
| 221 "//mojo/public/cpp/system:system", | 225 "//mojo/public/cpp/system:system", |
| 222 "//testing/gtest", | 226 "//testing/gtest", |
| 223 "//ui/aura", | 227 "//ui/aura", |
| 224 "//ui/aura:test_support", | 228 "//ui/aura:test_support", |
| 225 "//ui/base:test_support", | 229 "//ui/base:test_support", |
| 226 "//ui/base/ime", | 230 "//ui/base/ime", |
| 227 "//ui/events", | 231 "//ui/events", |
| 228 "//ui/events:dom_keycode_converter", | 232 "//ui/events:dom_keycode_converter", |
| 229 "//url:url", | 233 "//url:url", |
| 230 ] | 234 ] |
| 231 } | 235 } |
| OLD | NEW |