Chromium Code Reviews| Index: components/omnibox/browser/BUILD.gn |
| diff --git a/components/omnibox/browser/BUILD.gn b/components/omnibox/browser/BUILD.gn |
| index 91cb430d941235124c01297595a7746fd3449656..1408b563010aadc667037432606df9506cabefa3 100644 |
| --- a/components/omnibox/browser/BUILD.gn |
| +++ b/components/omnibox/browser/BUILD.gn |
| @@ -168,8 +168,12 @@ proto_library("in_memory_url_index_cache_proto") { |
| static_library("test_support") { |
| testonly = true |
| sources = [ |
| + "fake_autocomplete_provider_client.cc", |
| + "fake_autocomplete_provider_client.h", |
| "history_index_restore_observer.cc", |
| "history_index_restore_observer.h", |
| + "history_test_util.cc", |
| + "history_test_util.h", |
| "in_memory_url_index_test_util.cc", |
| "in_memory_url_index_test_util.h", |
| "mock_autocomplete_provider_client.cc", |
| @@ -183,12 +187,18 @@ static_library("test_support") { |
| deps = [ |
| ":browser", |
| "//base", |
| + "//base/test:test_support", |
|
dyaroshev
2016/10/24 17:07:08
Remove now unnecessary dependencies from "unit_tes
|
| + "//components/bookmarks/browser", |
| + "//components/bookmarks/test", |
| "//components/history/core/browser", |
| + "//components/history/core/test", |
| "//components/metrics/proto", |
| "//components/search_engines", |
| "//net", |
| + "//sql", |
| "//testing/gmock", |
| "//testing/gtest", |
| + "//ui/base", |
| ] |
| } |