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 source_set("browser") { | 8 source_set("browser") { |
9 sources = [] | 9 sources = [] |
10 | 10 |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 | 423 |
424 deps = [ | 424 deps = [ |
425 ":browser", | 425 ":browser", |
426 "//base", | 426 "//base", |
427 "//base/test:test_support", | 427 "//base/test:test_support", |
428 "//components/cast_certificate", | 428 "//components/cast_certificate", |
429 "//components/cast_certificate:test_support", | 429 "//components/cast_certificate:test_support", |
430 "//components/cast_certificate/proto:unittest_proto", | 430 "//components/cast_certificate/proto:unittest_proto", |
431 "//components/crx_file", | 431 "//components/crx_file", |
432 "//components/keyed_service/content", | 432 "//components/keyed_service/content", |
433 "//components/pref_registry:test_support", | 433 "//components/pref_registry:pref_registry", |
434 "//components/prefs:test_support", | 434 "//components/prefs:test_support", |
| 435 "//components/sync_preferences:test_support", |
435 "//components/update_client", | 436 "//components/update_client", |
436 "//components/url_matcher", | 437 "//components/url_matcher", |
437 "//components/user_prefs", | 438 "//components/user_prefs", |
438 "//content/test:test_support", | 439 "//content/test:test_support", |
439 "//device/bluetooth:mocks", | 440 "//device/bluetooth:mocks", |
440 "//device/power_save_blocker", | 441 "//device/power_save_blocker", |
441 "//extensions:extensions_browser_resources", | 442 "//extensions:extensions_browser_resources", |
442 "//extensions:test_support", | 443 "//extensions:test_support", |
443 "//extensions/common", | 444 "//extensions/common", |
444 "//extensions/common/api", | 445 "//extensions/common/api", |
445 "//extensions/features", | 446 "//extensions/features", |
446 "//ipc:test_support", | 447 "//ipc:test_support", |
447 "//net:test_support", | 448 "//net:test_support", |
448 "//third_party/leveldatabase", | 449 "//third_party/leveldatabase", |
449 "//third_party/zlib:zip", | 450 "//third_party/zlib:zip", |
450 ] | 451 ] |
451 | 452 |
452 if (is_chromeos) { | 453 if (is_chromeos) { |
453 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 454 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
454 deps += [ "//chromeos:test_support" ] | 455 deps += [ "//chromeos:test_support" ] |
455 } | 456 } |
456 } | 457 } |
OLD | NEW |