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