| 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 456 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 deps = [ | 467 deps = [ |
| 468 ":browser", | 468 ":browser", |
| 469 ":test_support", | 469 ":test_support", |
| 470 "//base", | 470 "//base", |
| 471 "//base/test:test_support", | 471 "//base/test:test_support", |
| 472 "//components/cast_certificate", | 472 "//components/cast_certificate", |
| 473 "//components/cast_certificate:test_support", | 473 "//components/cast_certificate:test_support", |
| 474 "//components/cast_certificate/proto:unittest_proto", | 474 "//components/cast_certificate/proto:unittest_proto", |
| 475 "//components/crx_file", | 475 "//components/crx_file", |
| 476 "//components/keyed_service/content", | 476 "//components/keyed_service/content", |
| 477 "//components/onc", |
| 477 "//components/pref_registry:pref_registry", | 478 "//components/pref_registry:pref_registry", |
| 478 "//components/prefs:test_support", | 479 "//components/prefs:test_support", |
| 479 "//components/sync_preferences:test_support", | 480 "//components/sync_preferences:test_support", |
| 480 "//components/update_client", | 481 "//components/update_client", |
| 481 "//components/url_matcher", | 482 "//components/url_matcher", |
| 482 "//components/user_prefs", | 483 "//components/user_prefs", |
| 483 "//content/test:test_support", | 484 "//content/test:test_support", |
| 484 "//device/bluetooth:mocks", | 485 "//device/bluetooth:mocks", |
| 485 "//device/power_save_blocker", | 486 "//device/power_save_blocker", |
| 486 "//extensions:extensions_browser_resources", | 487 "//extensions:extensions_browser_resources", |
| 487 "//extensions:test_support", | 488 "//extensions:test_support", |
| 488 "//extensions/common", | 489 "//extensions/common", |
| 489 "//extensions/common/api", | 490 "//extensions/common/api", |
| 490 "//extensions/features", | 491 "//extensions/features", |
| 491 "//ipc:test_support", | 492 "//ipc:test_support", |
| 492 "//net:test_support", | 493 "//net:test_support", |
| 493 "//third_party/leveldatabase", | 494 "//third_party/leveldatabase", |
| 494 "//third_party/zlib:zip", | 495 "//third_party/zlib:zip", |
| 495 ] | 496 ] |
| 496 | 497 |
| 497 if (is_chromeos) { | 498 if (is_chromeos) { |
| 498 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] | 499 sources += [ "api/webcam_private/visca_webcam_unittest.cc" ] |
| 499 deps += [ "//chromeos:test_support" ] | 500 deps += [ "//chromeos:test_support" ] |
| 500 } | 501 } |
| 501 } | 502 } |
| OLD | NEW |