Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: components/arc/BUILD.gn

Issue 2046283003: Add unit test for ArcBluetoothBridge and TypeConverter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@bt
Patch Set: Fix rkc@ nit / buildbot error Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
207 ":arc_bindings", 211 ":arc_bindings",
208 ":arc_test_support", 212 ":arc_test_support",
209 "//base", 213 "//base",
210 "//chromeos", 214 "//chromeos",
215 "//device/bluetooth",
211 "//mojo/public/cpp/system:system", 216 "//mojo/public/cpp/system:system",
212 "//testing/gtest", 217 "//testing/gtest",
213 "//ui/aura", 218 "//ui/aura",
214 "//ui/base:test_support", 219 "//ui/base:test_support",
215 "//ui/base/ime", 220 "//ui/base/ime",
216 "//ui/events", 221 "//ui/events",
217 "//ui/events:dom_keycode_converter", 222 "//ui/events:dom_keycode_converter",
218 "//url:url", 223 "//url:url",
219 ] 224 ]
220 } 225 }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 ] 267 ]
263 268
264 deps = [ 269 deps = [
265 ":arc_standalone", 270 ":arc_standalone",
266 ":arc_standalone_service", 271 ":arc_standalone_service",
267 "//base", 272 "//base",
268 "//ipc:ipc", 273 "//ipc:ipc",
269 "//mojo/edk/system", 274 "//mojo/edk/system",
270 ] 275 ]
271 } 276 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698