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

Side by Side Diff: extensions/browser/BUILD.gn

Issue 2819593003: Initialize BlueZ in app_shell on Linux (Closed)
Patch Set: feedback Created 3 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//extensions/features/features.gni") 6 import("//extensions/features/features.gni")
7 7
8 group("browser") { 8 group("browser") {
9 public_deps = [ 9 public_deps = [
10 "//extensions/browser:browser_context_keyed_service_factories", 10 "//extensions/browser:browser_context_keyed_service_factories",
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 "//extensions/common", 306 "//extensions/common",
307 "//services/service_manager/public/cpp", 307 "//services/service_manager/public/cpp",
308 ] 308 ]
309 } 309 }
310 } 310 }
311 311
312 source_set("browser_tests") { 312 source_set("browser_tests") {
313 testonly = true 313 testonly = true
314 sources = [ 314 sources = [
315 "api/audio/audio_apitest.cc", 315 "api/audio/audio_apitest.cc",
316
317 # TODO(michaelpg): bluetooth_appshell_test.cc is a crutch until we have a
318 # better system for testing APIs in both app_shell and chrome. See
319 # crbug.com/650835.
320 "api/bluetooth/bluetooth_appshell_test.cc",
316 "api/bluetooth_socket/bluetooth_socket_apitest.cc", 321 "api/bluetooth_socket/bluetooth_socket_apitest.cc",
317 "api/display_source/display_source_apitest.cc", 322 "api/display_source/display_source_apitest.cc",
318 "api/display_source/display_source_apitestbase.cc", 323 "api/display_source/display_source_apitestbase.cc",
319 "api/display_source/display_source_apitestbase.h", 324 "api/display_source/display_source_apitestbase.h",
320 "api/dns/dns_apitest.cc", 325 "api/dns/dns_apitest.cc",
321 "api/hid/hid_apitest.cc", 326 "api/hid/hid_apitest.cc",
322 "api/printer_provider/printer_provider_apitest.cc", 327 "api/printer_provider/printer_provider_apitest.cc",
323 "api/socket/socket_apitest.cc", 328 "api/socket/socket_apitest.cc",
324 "api/sockets_tcp/sockets_tcp_apitest.cc", 329 "api/sockets_tcp/sockets_tcp_apitest.cc",
325 "api/sockets_tcp_server/sockets_tcp_server_apitest.cc", 330 "api/sockets_tcp_server/sockets_tcp_server_apitest.cc",
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 510
506 if (is_chromeos) { 511 if (is_chromeos) {
507 sources += [ 512 sources += [
508 "api/audio/audio_device_id_calculator_unittest.cc", 513 "api/audio/audio_device_id_calculator_unittest.cc",
509 "api/webcam_private/visca_webcam_unittest.cc", 514 "api/webcam_private/visca_webcam_unittest.cc",
510 ] 515 ]
511 516
512 deps += [ "//chromeos:test_support" ] 517 deps += [ "//chromeos:test_support" ]
513 } 518 }
514 } 519 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698