| 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 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "bluetooth/bluetooth_struct_traits_unittest.cc", | 209 "bluetooth/bluetooth_struct_traits_unittest.cc", |
| 210 "bluetooth/bluetooth_type_converters_unittest.cc", | 210 "bluetooth/bluetooth_type_converters_unittest.cc", |
| 211 "ime/arc_ime_service_unittest.cc", | 211 "ime/arc_ime_service_unittest.cc", |
| 212 "intent_helper/activity_icon_loader_unittest.cc", | 212 "intent_helper/activity_icon_loader_unittest.cc", |
| 213 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 213 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 214 "intent_helper/font_size_util_unittest.cc", | 214 "intent_helper/font_size_util_unittest.cc", |
| 215 "intent_helper/intent_filter_unittest.cc", | 215 "intent_helper/intent_filter_unittest.cc", |
| 216 "intent_helper/link_handler_model_impl_unittest.cc", | 216 "intent_helper/link_handler_model_impl_unittest.cc", |
| 217 "intent_helper/local_activity_resolver_unittest.cc", | 217 "intent_helper/local_activity_resolver_unittest.cc", |
| 218 "intent_helper/page_transition_util_unittest.cc", | 218 "intent_helper/page_transition_util_unittest.cc", |
| 219 "kiosk/arc_kiosk_bridge_unittest.cc", |
| 219 ] | 220 ] |
| 220 | 221 |
| 221 deps = [ | 222 deps = [ |
| 222 ":arc_test_support", | 223 ":arc_test_support", |
| 223 "//base", | 224 "//base", |
| 224 "//base/test:test_support", | 225 "//base/test:test_support", |
| 225 "//chromeos", | 226 "//chromeos", |
| 226 "//device/bluetooth", | 227 "//device/bluetooth", |
| 227 "//mojo/public/cpp/system:system", | 228 "//mojo/public/cpp/system:system", |
| 229 "//testing/gmock", |
| 228 "//testing/gtest", | 230 "//testing/gtest", |
| 229 "//ui/aura", | 231 "//ui/aura", |
| 230 "//ui/aura:test_support", | 232 "//ui/aura:test_support", |
| 231 "//ui/base:test_support", | 233 "//ui/base:test_support", |
| 232 "//ui/base/ime", | 234 "//ui/base/ime", |
| 233 "//ui/events", | 235 "//ui/events", |
| 234 "//ui/events:dom_keycode_converter", | 236 "//ui/events:dom_keycode_converter", |
| 235 "//url:url", | 237 "//url:url", |
| 236 ] | 238 ] |
| 237 } | 239 } |
| OLD | NEW |