| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build_overrides/webrtc.gni") | 7 import("//build_overrides/webrtc.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 | 42 |
| 43 # Add only ":unit_tests" dependencies here. If your tests have dependencies | 43 # Add only ":unit_tests" dependencies here. If your tests have dependencies |
| 44 # (this would at least include the component itself), they should be on the | 44 # (this would at least include the component itself), they should be on the |
| 45 # test source set and not here. | 45 # test source set and not here. |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 "//base", | 48 "//base", |
| 49 "//base/test:test_support", | 49 "//base/test:test_support", |
| 50 "//components/bookmarks/browser:unit_tests", | 50 "//components/bookmarks/browser:unit_tests", |
| 51 "//components/bookmarks/managed:unit_tests", | 51 "//components/bookmarks/managed:unit_tests", |
| 52 "//components/compression:unit_tests", | |
| 53 "//components/content_settings/core/browser:unit_tests", | 52 "//components/content_settings/core/browser:unit_tests", |
| 54 "//components/content_settings/core/common", | 53 "//components/content_settings/core/common", |
| 55 "//components/content_settings/core/common:unit_tests", | 54 "//components/content_settings/core/common:unit_tests", |
| 56 "//components/data_usage/core:unit_tests", | 55 "//components/data_usage/core:unit_tests", |
| 57 "//components/dom_distiller/core:unit_tests", | 56 "//components/dom_distiller/core:unit_tests", |
| 58 "//components/flags_ui:unit_tests", | 57 "//components/flags_ui:unit_tests", |
| 59 "//components/google/core/browser:unit_tests", | 58 "//components/google/core/browser:unit_tests", |
| 60 "//components/keyed_service/core:unit_tests", | 59 "//components/keyed_service/core:unit_tests", |
| 61 "//components/leveldb_proto:unit_tests", | 60 "//components/leveldb_proto:unit_tests", |
| 62 "//components/metrics:unit_tests", | 61 "//components/metrics:unit_tests", |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 if (!is_ios) { | 451 if (!is_ios) { |
| 453 deps += [ | 452 deps += [ |
| 454 "//base", | 453 "//base", |
| 455 "//base/test:test_support_perf", | 454 "//base/test:test_support_perf", |
| 456 "//components/scheduler", | 455 "//components/scheduler", |
| 457 "//components/visitedlink/browser", | 456 "//components/visitedlink/browser", |
| 458 "//content/test:test_support", | 457 "//content/test:test_support", |
| 459 ] | 458 ] |
| 460 } | 459 } |
| 461 } | 460 } |
| OLD | NEW |