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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 sources = [ | 154 sources = [ |
155 "in_memory_url_index_cache.proto", | 155 "in_memory_url_index_cache.proto", |
156 ] | 156 ] |
157 } | 157 } |
158 | 158 |
159 static_library("test_support") { | 159 static_library("test_support") { |
160 testonly = true | 160 testonly = true |
161 sources = [ | 161 sources = [ |
162 "history_index_restore_observer.cc", | 162 "history_index_restore_observer.cc", |
163 "history_index_restore_observer.h", | 163 "history_index_restore_observer.h", |
| 164 "in_memory_url_index_test_util.cc", |
| 165 "in_memory_url_index_test_util.h", |
164 "mock_autocomplete_provider_client.cc", | 166 "mock_autocomplete_provider_client.cc", |
165 "mock_autocomplete_provider_client.h", | 167 "mock_autocomplete_provider_client.h", |
166 "test_scheme_classifier.cc", | 168 "test_scheme_classifier.cc", |
167 "test_scheme_classifier.h", | 169 "test_scheme_classifier.h", |
168 ] | 170 ] |
169 | 171 |
170 deps = [ | 172 deps = [ |
171 ":browser", | 173 ":browser", |
172 "//base", | 174 "//base", |
| 175 "//components/history/core/browser", |
173 "//components/metrics/proto", | 176 "//components/metrics/proto", |
174 "//components/search_engines", | 177 "//components/search_engines", |
175 "//net", | 178 "//net", |
176 "//testing/gmock", | 179 "//testing/gmock", |
177 ] | 180 ] |
178 } | 181 } |
179 | 182 |
180 source_set("unit_tests") { | 183 source_set("unit_tests") { |
181 testonly = true | 184 testonly = true |
182 sources = [ | 185 sources = [ |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "//components/variations", | 220 "//components/variations", |
218 "//net:test_support", | 221 "//net:test_support", |
219 "//sql", | 222 "//sql", |
220 "//sql:test_support", | 223 "//sql:test_support", |
221 "//testing/gmock", | 224 "//testing/gmock", |
222 "//testing/gtest", | 225 "//testing/gtest", |
223 "//ui/base", | 226 "//ui/base", |
224 "//url", | 227 "//url", |
225 ] | 228 ] |
226 } | 229 } |
OLD | NEW |