| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 testonly = true | 168 testonly = true |
| 169 sources = [ | 169 sources = [ |
| 170 "test/fake_app_instance.cc", | 170 "test/fake_app_instance.cc", |
| 171 "test/fake_app_instance.h", | 171 "test/fake_app_instance.h", |
| 172 "test/fake_arc_bridge_bootstrap.cc", | 172 "test/fake_arc_bridge_bootstrap.cc", |
| 173 "test/fake_arc_bridge_bootstrap.h", | 173 "test/fake_arc_bridge_bootstrap.h", |
| 174 "test/fake_arc_bridge_instance.cc", | 174 "test/fake_arc_bridge_instance.cc", |
| 175 "test/fake_arc_bridge_instance.h", | 175 "test/fake_arc_bridge_instance.h", |
| 176 "test/fake_arc_bridge_service.cc", | 176 "test/fake_arc_bridge_service.cc", |
| 177 "test/fake_arc_bridge_service.h", | 177 "test/fake_arc_bridge_service.h", |
| 178 "test/fake_bluetooth_instance.cc", |
| 179 "test/fake_bluetooth_instance.h", |
| 178 "test/fake_notifications_instance.cc", | 180 "test/fake_notifications_instance.cc", |
| 179 "test/fake_notifications_instance.h", | 181 "test/fake_notifications_instance.h", |
| 180 "test/fake_policy_instance.cc", | 182 "test/fake_policy_instance.cc", |
| 181 "test/fake_policy_instance.h", | 183 "test/fake_policy_instance.h", |
| 182 ] | 184 ] |
| 183 | 185 |
| 184 deps = [ | 186 deps = [ |
| 185 ":arc", | 187 ":arc", |
| 186 ":arc_base", | 188 ":arc_base", |
| 187 ":arc_bindings", | 189 ":arc_bindings", |
| 188 "//base", | 190 "//base", |
| 189 "//mojo/common:common_base", | 191 "//mojo/common:common_base", |
| 190 ] | 192 ] |
| 191 } | 193 } |
| 192 | 194 |
| 193 source_set("unit_tests") { | 195 source_set("unit_tests") { |
| 194 testonly = true | 196 testonly = true |
| 195 sources = [ | 197 sources = [ |
| 196 "arc_bridge_service_unittest.cc", | 198 "arc_bridge_service_unittest.cc", |
| 199 "bluetooth/arc_bluetooth_bridge_unittest.cc", |
| 200 "bluetooth/bluetooth_type_converters_unittest.cc", |
| 197 "ime/arc_ime_service_unittest.cc", | 201 "ime/arc_ime_service_unittest.cc", |
| 198 "intent_helper/activity_icon_loader_unittest.cc", | 202 "intent_helper/activity_icon_loader_unittest.cc", |
| 199 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 203 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 200 "intent_helper/font_size_util_unittest.cc", | 204 "intent_helper/font_size_util_unittest.cc", |
| 201 "intent_helper/intent_filter_unittest.cc", | 205 "intent_helper/intent_filter_unittest.cc", |
| 202 "intent_helper/link_handler_model_impl_unittest.cc", | 206 "intent_helper/link_handler_model_impl_unittest.cc", |
| 203 ] | 207 ] |
| 204 | 208 |
| 205 deps = [ | 209 deps = [ |
| 206 ":arc", | 210 ":arc", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 ] | 266 ] |
| 263 | 267 |
| 264 deps = [ | 268 deps = [ |
| 265 ":arc_standalone", | 269 ":arc_standalone", |
| 266 ":arc_standalone_service", | 270 ":arc_standalone_service", |
| 267 "//base", | 271 "//base", |
| 268 "//ipc:ipc", | 272 "//ipc:ipc", |
| 269 "//mojo/edk/system", | 273 "//mojo/edk/system", |
| 270 ] | 274 ] |
| 271 } | 275 } |
| OLD | NEW |