OLD | NEW |
---|---|
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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
305 "//extensions:extensions_browser_resources", | 305 "//extensions:extensions_browser_resources", |
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/app_apis_test.cc", | |
rkc
2017/04/17 18:42:09
I presume this is only needed till crbug.com/65083
michaelpg
2017/04/21 20:27:00
Done.
| |
315 "api/audio/audio_apitest.cc", | 316 "api/audio/audio_apitest.cc", |
316 "api/bluetooth_socket/bluetooth_socket_apitest.cc", | 317 "api/bluetooth_socket/bluetooth_socket_apitest.cc", |
317 "api/display_source/display_source_apitest.cc", | 318 "api/display_source/display_source_apitest.cc", |
318 "api/display_source/display_source_apitestbase.cc", | 319 "api/display_source/display_source_apitestbase.cc", |
319 "api/display_source/display_source_apitestbase.h", | 320 "api/display_source/display_source_apitestbase.h", |
320 "api/dns/dns_apitest.cc", | 321 "api/dns/dns_apitest.cc", |
321 "api/hid/hid_apitest.cc", | 322 "api/hid/hid_apitest.cc", |
322 "api/printer_provider/printer_provider_apitest.cc", | 323 "api/printer_provider/printer_provider_apitest.cc", |
323 "api/socket/socket_apitest.cc", | 324 "api/socket/socket_apitest.cc", |
324 "api/sockets_tcp/sockets_tcp_apitest.cc", | 325 "api/sockets_tcp/sockets_tcp_apitest.cc", |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
501 "//storage/browser:test_support", | 502 "//storage/browser:test_support", |
502 "//third_party/leveldatabase", | 503 "//third_party/leveldatabase", |
503 "//third_party/zlib:zip", | 504 "//third_party/zlib:zip", |
504 ] | 505 ] |
505 | 506 |
506 if (is_chromeos) { | 507 if (is_chromeos) { |
507 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 508 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
508 deps += [ "//chromeos:test_support" ] | 509 deps += [ "//chromeos:test_support" ] |
509 } | 510 } |
510 } | 511 } |
OLD | NEW |