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