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 "bookmark_provider.cc", | 22 "bookmark_provider.cc", |
23 "bookmark_provider.h", | 23 "bookmark_provider.h", |
24 "history_provider.cc", | 24 "history_provider.cc", |
25 "history_provider.h", | 25 "history_provider.h", |
26 "history_url_provider.cc", | |
27 "history_url_provider.h", | |
28 "in_memory_url_index_types.cc", | 26 "in_memory_url_index_types.cc", |
29 "in_memory_url_index_types.h", | 27 "in_memory_url_index_types.h", |
30 "keyword_extensions_delegate.cc", | 28 "keyword_extensions_delegate.cc", |
31 "keyword_extensions_delegate.h", | 29 "keyword_extensions_delegate.h", |
32 "keyword_provider.cc", | 30 "keyword_provider.cc", |
33 "keyword_provider.h", | 31 "keyword_provider.h", |
34 "omnibox_field_trial.cc", | 32 "omnibox_field_trial.cc", |
35 "omnibox_field_trial.h", | 33 "omnibox_field_trial.h", |
36 "omnibox_log.cc", | 34 "omnibox_log.cc", |
37 "omnibox_log.h", | 35 "omnibox_log.h", |
38 "omnibox_switches.cc", | 36 "omnibox_switches.cc", |
39 "omnibox_switches.h", | 37 "omnibox_switches.h", |
40 "scored_history_match.cc", | |
41 "scored_history_match.h", | |
42 "search_provider.cc", | 38 "search_provider.cc", |
43 "search_provider.h", | 39 "search_provider.h", |
44 "search_suggestion_parser.cc", | 40 "search_suggestion_parser.cc", |
45 "search_suggestion_parser.h", | 41 "search_suggestion_parser.h", |
46 "suggestion_answer.cc", | 42 "suggestion_answer.cc", |
47 "suggestion_answer.h", | 43 "suggestion_answer.h", |
48 "url_prefix.cc", | 44 "url_prefix.cc", |
49 "url_prefix.h", | 45 "url_prefix.h", |
50 ] | 46 ] |
51 | 47 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 testonly = true | 84 testonly = true |
89 sources = [ | 85 sources = [ |
90 "answers_cache_unittest.cc", | 86 "answers_cache_unittest.cc", |
91 "autocomplete_input_unittest.cc", | 87 "autocomplete_input_unittest.cc", |
92 "autocomplete_match_unittest.cc", | 88 "autocomplete_match_unittest.cc", |
93 "autocomplete_result_unittest.cc", | 89 "autocomplete_result_unittest.cc", |
94 "base_search_provider_unittest.cc", | 90 "base_search_provider_unittest.cc", |
95 "in_memory_url_index_types_unittest.cc", | 91 "in_memory_url_index_types_unittest.cc", |
96 "keyword_provider_unittest.cc", | 92 "keyword_provider_unittest.cc", |
97 "omnibox_field_trial_unittest.cc", | 93 "omnibox_field_trial_unittest.cc", |
98 "scored_history_match_unittest.cc", | |
99 "suggestion_answer_unittest.cc", | 94 "suggestion_answer_unittest.cc", |
100 ] | 95 ] |
101 | 96 |
102 deps = [ | 97 deps = [ |
103 ":omnibox", | 98 ":omnibox", |
104 ":test_support", | 99 ":test_support", |
105 "//testing/gmock", | 100 "//testing/gmock", |
106 "//testing/gtest", | 101 "//testing/gtest", |
107 ] | 102 ] |
108 } | 103 } |
OLD | NEW |