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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 source_set("browser") { | 7 source_set("browser") { |
8 sources = [ | 8 sources = [ |
9 "answers_cache.cc", | 9 "answers_cache.cc", |
10 "answers_cache.h", | 10 "answers_cache.h", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 ] | 77 ] |
78 | 78 |
79 public_deps = [ | 79 public_deps = [ |
80 "//components/history/core/browser", | 80 "//components/history/core/browser", |
81 "//components/metrics/proto", | 81 "//components/metrics/proto", |
82 ] | 82 ] |
83 deps = [ | 83 deps = [ |
84 ":in_memory_url_index_cache_proto", | 84 ":in_memory_url_index_cache_proto", |
85 "//base", | 85 "//base", |
86 "//base:i18n", | 86 "//base:i18n", |
| 87 "//base:prefs", |
87 "//components/bookmarks/browser", | 88 "//components/bookmarks/browser", |
88 "//components/keyed_service/core", | 89 "//components/keyed_service/core", |
89 "//components/pref_registry", | 90 "//components/pref_registry", |
90 "//components/query_parser", | 91 "//components/query_parser", |
91 "//components/resources", | 92 "//components/resources", |
92 "//components/search", | 93 "//components/search", |
93 "//components/search_engines", | 94 "//components/search_engines", |
| 95 "//components/sessions:shared", |
94 "//components/strings", | 96 "//components/strings", |
95 "//components/url_fixer", | 97 "//components/url_fixer", |
96 "//components/variations", | 98 "//components/variations", |
97 "//components/variations/net", | 99 "//components/variations/net", |
98 "//net", | 100 "//net", |
99 "//sql", | 101 "//sql", |
100 "//third_party/protobuf:protobuf_lite", | 102 "//third_party/protobuf:protobuf_lite", |
101 "//ui/base", | 103 "//ui/base", |
102 "//url", | 104 "//url", |
103 ] | 105 ] |
(...skipping 11 matching lines...) Expand all Loading... |
115 "mock_autocomplete_provider_client.cc", | 117 "mock_autocomplete_provider_client.cc", |
116 "mock_autocomplete_provider_client.h", | 118 "mock_autocomplete_provider_client.h", |
117 "test_scheme_classifier.cc", | 119 "test_scheme_classifier.cc", |
118 "test_scheme_classifier.h", | 120 "test_scheme_classifier.h", |
119 ] | 121 ] |
120 | 122 |
121 deps = [ | 123 deps = [ |
122 ":browser", | 124 ":browser", |
123 "//base", | 125 "//base", |
124 "//components/metrics/proto", | 126 "//components/metrics/proto", |
| 127 "//components/search_engines", |
| 128 "//net", |
125 "//testing/gmock", | 129 "//testing/gmock", |
126 ] | 130 ] |
127 } | 131 } |
128 | 132 |
129 source_set("unit_tests") { | 133 source_set("unit_tests") { |
130 testonly = true | 134 testonly = true |
131 sources = [ | 135 sources = [ |
132 "answers_cache_unittest.cc", | 136 "answers_cache_unittest.cc", |
133 "autocomplete_input_unittest.cc", | 137 "autocomplete_input_unittest.cc", |
134 "autocomplete_match_unittest.cc", | 138 "autocomplete_match_unittest.cc", |
135 "autocomplete_result_unittest.cc", | 139 "autocomplete_result_unittest.cc", |
136 "base_search_provider_unittest.cc", | 140 "base_search_provider_unittest.cc", |
137 "in_memory_url_index_types_unittest.cc", | 141 "in_memory_url_index_types_unittest.cc", |
138 "keyword_provider_unittest.cc", | 142 "keyword_provider_unittest.cc", |
139 "omnibox_field_trial_unittest.cc", | 143 "omnibox_field_trial_unittest.cc", |
140 "scored_history_match_unittest.cc", | 144 "scored_history_match_unittest.cc", |
141 "suggestion_answer_unittest.cc", | 145 "suggestion_answer_unittest.cc", |
142 ] | 146 ] |
143 | 147 |
144 deps = [ | 148 deps = [ |
145 ":browser", | 149 ":browser", |
146 ":test_support", | 150 ":test_support", |
| 151 "//base", |
| 152 "//components/search", |
| 153 "//components/search_engines", |
| 154 "//components/variations", |
147 "//testing/gmock", | 155 "//testing/gmock", |
148 "//testing/gtest", | 156 "//testing/gtest", |
| 157 "//url", |
149 ] | 158 ] |
150 } | 159 } |
OLD | NEW |