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 static_library("omnibox") { | 5 static_library("omnibox") { |
6 sources = [ | 6 sources = [ |
7 "answers_cache.cc", | 7 "answers_cache.cc", |
8 "answers_cache.h", | 8 "answers_cache.h", |
9 "autocomplete_input.cc", | 9 "autocomplete_input.cc", |
10 "autocomplete_input.h", | 10 "autocomplete_input.h", |
11 "autocomplete_match.cc", | 11 "autocomplete_match.cc", |
12 "autocomplete_match.h", | 12 "autocomplete_match.h", |
13 "autocomplete_match_type.cc", | 13 "autocomplete_match_type.cc", |
14 "autocomplete_match_type.h", | 14 "autocomplete_match_type.h", |
15 "autocomplete_provider.cc", | 15 "autocomplete_provider.cc", |
16 "autocomplete_provider.h", | 16 "autocomplete_provider.h", |
17 "autocomplete_result.cc", | 17 "autocomplete_result.cc", |
18 "autocomplete_result.h", | 18 "autocomplete_result.h", |
19 "autocomplete_scheme_classifier.h", | 19 "autocomplete_scheme_classifier.h", |
20 "base_search_provider.cc", | 20 "base_search_provider.cc", |
21 "base_search_provider.h", | 21 "base_search_provider.h", |
| 22 "in_memory_url_index_types.cc", |
| 23 "in_memory_url_index_types.h", |
22 "keyword_extensions_delegate.cc", | 24 "keyword_extensions_delegate.cc", |
23 "keyword_extensions_delegate.h", | 25 "keyword_extensions_delegate.h", |
24 "keyword_provider.cc", | 26 "keyword_provider.cc", |
25 "keyword_provider.h", | 27 "keyword_provider.h", |
26 "omnibox_field_trial.cc", | 28 "omnibox_field_trial.cc", |
27 "omnibox_field_trial.h", | 29 "omnibox_field_trial.h", |
28 "omnibox_switches.cc", | 30 "omnibox_switches.cc", |
29 "omnibox_switches.h", | 31 "omnibox_switches.h", |
30 "search_provider.cc", | 32 "search_provider.cc", |
31 "search_provider.h", | 33 "search_provider.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 } | 73 } |
72 | 74 |
73 source_set("unit_tests") { | 75 source_set("unit_tests") { |
74 testonly = true | 76 testonly = true |
75 sources = [ | 77 sources = [ |
76 "answers_cache_unittest.cc", | 78 "answers_cache_unittest.cc", |
77 "autocomplete_input_unittest.cc", | 79 "autocomplete_input_unittest.cc", |
78 "autocomplete_match_unittest.cc", | 80 "autocomplete_match_unittest.cc", |
79 "autocomplete_result_unittest.cc", | 81 "autocomplete_result_unittest.cc", |
80 "base_search_provider_unittest.cc", | 82 "base_search_provider_unittest.cc", |
| 83 "in_memory_url_index_types_unittest.cc", |
81 "keyword_provider_unittest.cc", | 84 "keyword_provider_unittest.cc", |
82 "omnibox_field_trial_unittest.cc", | 85 "omnibox_field_trial_unittest.cc", |
83 "suggestion_answer_unittest.cc", | 86 "suggestion_answer_unittest.cc", |
84 ] | 87 ] |
85 | 88 |
86 deps = [ | 89 deps = [ |
87 ":omnibox", | 90 ":omnibox", |
88 ":test_support", | 91 ":test_support", |
89 "//testing/gmock", | 92 "//testing/gmock", |
90 "//testing/gtest", | 93 "//testing/gtest", |
91 ] | 94 ] |
92 } | 95 } |
OLD | NEW |