| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 } | 187 } |
| 188 | 188 |
| 189 source_set("unit_tests") { | 189 source_set("unit_tests") { |
| 190 testonly = true | 190 testonly = true |
| 191 sources = [ | 191 sources = [ |
| 192 "arc_bridge_service_unittest.cc", | 192 "arc_bridge_service_unittest.cc", |
| 193 "ime/arc_ime_service_unittest.cc", | 193 "ime/arc_ime_service_unittest.cc", |
| 194 "intent_helper/activity_icon_loader_unittest.cc", | 194 "intent_helper/activity_icon_loader_unittest.cc", |
| 195 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 195 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 196 "intent_helper/font_size_util_unittest.cc", | 196 "intent_helper/font_size_util_unittest.cc", |
| 197 "intent_helper/intent_filter_unittest.cc", |
| 197 "intent_helper/link_handler_model_impl_unittest.cc", | 198 "intent_helper/link_handler_model_impl_unittest.cc", |
| 198 ] | 199 ] |
| 199 | 200 |
| 200 deps = [ | 201 deps = [ |
| 201 ":arc", | 202 ":arc", |
| 202 ":arc_bindings", | 203 ":arc_bindings", |
| 203 ":arc_test_support", | 204 ":arc_test_support", |
| 204 "//base", | 205 "//base", |
| 205 "//chromeos", | 206 "//chromeos", |
| 206 "//mojo/public/cpp/system:system", | 207 "//mojo/public/cpp/system:system", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 ] | 258 ] |
| 258 | 259 |
| 259 deps = [ | 260 deps = [ |
| 260 ":arc_standalone", | 261 ":arc_standalone", |
| 261 ":arc_standalone_service", | 262 ":arc_standalone_service", |
| 262 "//base", | 263 "//base", |
| 263 "//ipc:ipc", | 264 "//ipc:ipc", |
| 264 "//mojo/edk/system", | 265 "//mojo/edk/system", |
| 265 ] | 266 ] |
| 266 } | 267 } |
| OLD | NEW |