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 |
11 static_library("browser") { | 11 static_library("browser") { |
12 sources = [ | 12 sources = [ |
13 "answers_cache.cc", | 13 "answers_cache.cc", |
14 "answers_cache.h", | 14 "answers_cache.h", |
15 "autocomplete_classifier.cc", | 15 "autocomplete_classifier.cc", |
16 "autocomplete_classifier.h", | 16 "autocomplete_classifier.h", |
17 "autocomplete_controller.cc", | 17 "autocomplete_controller.cc", |
18 "autocomplete_controller.h", | 18 "autocomplete_controller.h", |
19 "autocomplete_controller_delegate.h", | 19 "autocomplete_controller_delegate.h", |
20 "autocomplete_input.cc", | 20 "autocomplete_input.cc", |
21 "autocomplete_input.h", | 21 "autocomplete_input.h", |
22 "autocomplete_match.cc", | 22 "autocomplete_match.cc", |
23 "autocomplete_match.h", | 23 "autocomplete_match.h", |
24 "autocomplete_match_type.cc", | 24 "autocomplete_match_type.cc", |
25 "autocomplete_match_type.h", | 25 "autocomplete_match_type.h", |
26 "autocomplete_provider.cc", | 26 "autocomplete_provider.cc", |
27 "autocomplete_provider.h", | 27 "autocomplete_provider.h", |
| 28 "autocomplete_provider_utils.cc", |
| 29 "autocomplete_provider_utils.h", |
28 "autocomplete_result.cc", | 30 "autocomplete_result.cc", |
29 "autocomplete_result.h", | 31 "autocomplete_result.h", |
30 "autocomplete_scheme_classifier.h", | 32 "autocomplete_scheme_classifier.h", |
31 "base_search_provider.cc", | 33 "base_search_provider.cc", |
32 "base_search_provider.h", | 34 "base_search_provider.h", |
33 "bookmark_provider.cc", | 35 "bookmark_provider.cc", |
34 "bookmark_provider.h", | 36 "bookmark_provider.h", |
35 "builtin_provider.cc", | 37 "builtin_provider.cc", |
36 "builtin_provider.h", | 38 "builtin_provider.h", |
37 "clipboard_url_provider.cc", | 39 "clipboard_url_provider.cc", |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
216 ] | 218 ] |
217 } | 219 } |
218 | 220 |
219 source_set("unit_tests") { | 221 source_set("unit_tests") { |
220 testonly = true | 222 testonly = true |
221 sources = [ | 223 sources = [ |
222 "answers_cache_unittest.cc", | 224 "answers_cache_unittest.cc", |
223 "autocomplete_input_unittest.cc", | 225 "autocomplete_input_unittest.cc", |
224 "autocomplete_match_unittest.cc", | 226 "autocomplete_match_unittest.cc", |
225 "autocomplete_provider_unittest.cc", | 227 "autocomplete_provider_unittest.cc", |
| 228 "autocomplete_provider_utils_unittest.cc", |
226 "autocomplete_result_unittest.cc", | 229 "autocomplete_result_unittest.cc", |
227 "base_search_provider_unittest.cc", | 230 "base_search_provider_unittest.cc", |
228 "bookmark_provider_unittest.cc", | 231 "bookmark_provider_unittest.cc", |
229 "builtin_provider_unittest.cc", | 232 "builtin_provider_unittest.cc", |
230 "clipboard_url_provider_unittest.cc", | 233 "clipboard_url_provider_unittest.cc", |
231 "history_quick_provider_unittest.cc", | 234 "history_quick_provider_unittest.cc", |
232 "history_url_provider_unittest.cc", | 235 "history_url_provider_unittest.cc", |
233 "in_memory_url_index_types_unittest.cc", | 236 "in_memory_url_index_types_unittest.cc", |
234 "in_memory_url_index_unittest.cc", | 237 "in_memory_url_index_unittest.cc", |
235 "keyword_provider_unittest.cc", | 238 "keyword_provider_unittest.cc", |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 "//components/variations", | 271 "//components/variations", |
269 "//net:test_support", | 272 "//net:test_support", |
270 "//sql", | 273 "//sql", |
271 "//sql:test_support", | 274 "//sql:test_support", |
272 "//testing/gmock", | 275 "//testing/gmock", |
273 "//testing/gtest", | 276 "//testing/gtest", |
274 "//ui/base:base", | 277 "//ui/base:base", |
275 "//url", | 278 "//url", |
276 ] | 279 ] |
277 } | 280 } |
OLD | NEW |