| 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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 testonly = true | 169 testonly = true |
| 170 sources = [ | 170 sources = [ |
| 171 "test/fake_app_instance.cc", | 171 "test/fake_app_instance.cc", |
| 172 "test/fake_app_instance.h", | 172 "test/fake_app_instance.h", |
| 173 "test/fake_arc_bridge_bootstrap.cc", | 173 "test/fake_arc_bridge_bootstrap.cc", |
| 174 "test/fake_arc_bridge_bootstrap.h", | 174 "test/fake_arc_bridge_bootstrap.h", |
| 175 "test/fake_arc_bridge_instance.cc", | 175 "test/fake_arc_bridge_instance.cc", |
| 176 "test/fake_arc_bridge_instance.h", | 176 "test/fake_arc_bridge_instance.h", |
| 177 "test/fake_arc_bridge_service.cc", | 177 "test/fake_arc_bridge_service.cc", |
| 178 "test/fake_arc_bridge_service.h", | 178 "test/fake_arc_bridge_service.h", |
| 179 "test/fake_bluetooth_instance.cc", |
| 180 "test/fake_bluetooth_instance.h", |
| 179 "test/fake_notifications_instance.cc", | 181 "test/fake_notifications_instance.cc", |
| 180 "test/fake_notifications_instance.h", | 182 "test/fake_notifications_instance.h", |
| 181 "test/fake_policy_instance.cc", | 183 "test/fake_policy_instance.cc", |
| 182 "test/fake_policy_instance.h", | 184 "test/fake_policy_instance.h", |
| 183 ] | 185 ] |
| 184 | 186 |
| 185 deps = [ | 187 deps = [ |
| 186 ":arc", | 188 ":arc", |
| 187 ":arc_base", | 189 ":arc_base", |
| 188 ":arc_bindings", | 190 ":arc_bindings", |
| 189 "//base", | 191 "//base", |
| 190 "//mojo/common:common_base", | 192 "//mojo/common:common_base", |
| 191 ] | 193 ] |
| 192 } | 194 } |
| 193 | 195 |
| 194 source_set("unit_tests") { | 196 source_set("unit_tests") { |
| 195 testonly = true | 197 testonly = true |
| 196 sources = [ | 198 sources = [ |
| 197 "arc_bridge_service_unittest.cc", | 199 "arc_bridge_service_unittest.cc", |
| 200 "bluetooth/arc_bluetooth_bridge_unittest.cc", |
| 201 "bluetooth/bluetooth_type_converters_unittest.cc", |
| 198 "ime/arc_ime_service_unittest.cc", | 202 "ime/arc_ime_service_unittest.cc", |
| 199 "intent_helper/activity_icon_loader_unittest.cc", | 203 "intent_helper/activity_icon_loader_unittest.cc", |
| 200 "intent_helper/arc_intent_helper_bridge_unittest.cc", | 204 "intent_helper/arc_intent_helper_bridge_unittest.cc", |
| 201 "intent_helper/font_size_util_unittest.cc", | 205 "intent_helper/font_size_util_unittest.cc", |
| 202 "intent_helper/intent_filter_unittest.cc", | 206 "intent_helper/intent_filter_unittest.cc", |
| 203 "intent_helper/link_handler_model_impl_unittest.cc", | 207 "intent_helper/link_handler_model_impl_unittest.cc", |
| 204 ] | 208 ] |
| 205 | 209 |
| 206 deps = [ | 210 deps = [ |
| 207 ":arc", | 211 ":arc", |
| 208 ":arc_bindings", | 212 ":arc_bindings", |
| 209 ":arc_test_support", | 213 ":arc_test_support", |
| 210 "//base", | 214 "//base", |
| 211 "//chromeos", | 215 "//chromeos", |
| 216 "//device/bluetooth", |
| 212 "//mojo/public/cpp/system:system", | 217 "//mojo/public/cpp/system:system", |
| 213 "//testing/gtest", | 218 "//testing/gtest", |
| 214 "//ui/aura", | 219 "//ui/aura", |
| 215 "//ui/base:test_support", | 220 "//ui/base:test_support", |
| 216 "//ui/base/ime", | 221 "//ui/base/ime", |
| 217 "//ui/events", | 222 "//ui/events", |
| 218 "//ui/events:dom_keycode_converter", | 223 "//ui/events:dom_keycode_converter", |
| 219 "//url:url", | 224 "//url:url", |
| 220 ] | 225 ] |
| 221 } | 226 } |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 ] | 268 ] |
| 264 | 269 |
| 265 deps = [ | 270 deps = [ |
| 266 ":arc_standalone", | 271 ":arc_standalone", |
| 267 ":arc_standalone_service", | 272 ":arc_standalone_service", |
| 268 "//base", | 273 "//base", |
| 269 "//ipc:ipc", | 274 "//ipc:ipc", |
| 270 "//mojo/edk/system", | 275 "//mojo/edk/system", |
| 271 ] | 276 ] |
| 272 } | 277 } |
| OLD | NEW |