| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 | 188 |
| 189 deps = [ | 189 deps = [ |
| 190 "//base", | 190 "//base", |
| 191 "//mojo/common:common_base", | 191 "//mojo/common:common_base", |
| 192 ] | 192 ] |
| 193 } | 193 } |
| 194 | 194 |
| 195 source_set("unit_tests") { | 195 source_set("unit_tests") { |
| 196 testonly = true | 196 testonly = true |
| 197 sources = [ | 197 sources = [ |
| 198 "arc_service_manager_unittest.cc", |
| 198 "arc_session_runner_unittest.cc", | 199 "arc_session_runner_unittest.cc", |
| 199 "bluetooth/arc_bluetooth_bridge_unittest.cc", | 200 "bluetooth/arc_bluetooth_bridge_unittest.cc", |
| 200 "bluetooth/bluetooth_struct_traits_unittest.cc", | 201 "bluetooth/bluetooth_struct_traits_unittest.cc", |
| 201 "bluetooth/bluetooth_type_converters_unittest.cc", | 202 "bluetooth/bluetooth_type_converters_unittest.cc", |
| 202 "ime/arc_ime_service_unittest.cc", | 203 "ime/arc_ime_service_unittest.cc", |
| 203 "intent_helper/activity_icon_loader_unittest.cc", | 204 "intent_helper/activity_icon_loader_unittest.cc", |
| 204 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 205 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 205 "intent_helper/font_size_util_unittest.cc", | 206 "intent_helper/font_size_util_unittest.cc", |
| 206 "intent_helper/intent_filter_unittest.cc", | 207 "intent_helper/intent_filter_unittest.cc", |
| 207 "intent_helper/link_handler_model_impl_unittest.cc", | 208 "intent_helper/link_handler_model_impl_unittest.cc", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 218 "//testing/gtest", | 219 "//testing/gtest", |
| 219 "//ui/aura", | 220 "//ui/aura", |
| 220 "//ui/aura:test_support", | 221 "//ui/aura:test_support", |
| 221 "//ui/base:test_support", | 222 "//ui/base:test_support", |
| 222 "//ui/base/ime", | 223 "//ui/base/ime", |
| 223 "//ui/events", | 224 "//ui/events", |
| 224 "//ui/events:dom_keycode_converter", | 225 "//ui/events:dom_keycode_converter", |
| 225 "//url:url", | 226 "//url:url", |
| 226 ] | 227 ] |
| 227 } | 228 } |
| OLD | NEW |