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