Chromium Code Reviews| 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 import("//third_party/protobuf/proto_library.gni") | |
|
Peter Kasting
2015/06/16 21:58:29
Nit: Blank line above this
blundell
2015/06/17 14:16:18
Done.
| |
| 4 | 5 |
| 5 static_library("omnibox") { | 6 static_library("omnibox") { |
| 6 sources = [ | 7 sources = [ |
| 7 "answers_cache.cc", | 8 "answers_cache.cc", |
| 8 "answers_cache.h", | 9 "answers_cache.h", |
| 9 "autocomplete_input.cc", | 10 "autocomplete_input.cc", |
| 10 "autocomplete_input.h", | 11 "autocomplete_input.h", |
| 11 "autocomplete_match.cc", | 12 "autocomplete_match.cc", |
| 12 "autocomplete_match.h", | 13 "autocomplete_match.h", |
| 13 "autocomplete_match_type.cc", | 14 "autocomplete_match_type.cc", |
| 14 "autocomplete_match_type.h", | 15 "autocomplete_match_type.h", |
| 15 "autocomplete_provider.cc", | 16 "autocomplete_provider.cc", |
| 16 "autocomplete_provider.h", | 17 "autocomplete_provider.h", |
| 17 "autocomplete_result.cc", | 18 "autocomplete_result.cc", |
| 18 "autocomplete_result.h", | 19 "autocomplete_result.h", |
| 19 "autocomplete_scheme_classifier.h", | 20 "autocomplete_scheme_classifier.h", |
| 20 "base_search_provider.cc", | 21 "base_search_provider.cc", |
| 21 "base_search_provider.h", | 22 "base_search_provider.h", |
| 22 "bookmark_provider.cc", | 23 "bookmark_provider.cc", |
| 23 "bookmark_provider.h", | 24 "bookmark_provider.h", |
| 24 "history_provider.cc", | 25 "history_provider.cc", |
| 25 "history_provider.h", | 26 "history_provider.h", |
| 27 "history_quick_provider.cc", | |
| 28 "history_quick_provider.h", | |
| 26 "history_url_provider.cc", | 29 "history_url_provider.cc", |
| 27 "history_url_provider.h", | 30 "history_url_provider.h", |
| 31 "in_memory_url_index.cc", | |
| 32 "in_memory_url_index.h", | |
| 28 "in_memory_url_index_types.cc", | 33 "in_memory_url_index_types.cc", |
| 29 "in_memory_url_index_types.h", | 34 "in_memory_url_index_types.h", |
| 30 "keyword_extensions_delegate.cc", | 35 "keyword_extensions_delegate.cc", |
| 31 "keyword_extensions_delegate.h", | 36 "keyword_extensions_delegate.h", |
| 32 "keyword_provider.cc", | 37 "keyword_provider.cc", |
| 33 "keyword_provider.h", | 38 "keyword_provider.h", |
| 34 "omnibox_field_trial.cc", | 39 "omnibox_field_trial.cc", |
| 35 "omnibox_field_trial.h", | 40 "omnibox_field_trial.h", |
| 36 "omnibox_log.cc", | 41 "omnibox_log.cc", |
| 37 "omnibox_log.h", | 42 "omnibox_log.h", |
| 38 "omnibox_switches.cc", | 43 "omnibox_switches.cc", |
| 39 "omnibox_switches.h", | 44 "omnibox_switches.h", |
| 40 "scored_history_match.cc", | 45 "scored_history_match.cc", |
| 41 "scored_history_match.h", | 46 "scored_history_match.h", |
| 42 "search_provider.cc", | 47 "search_provider.cc", |
| 43 "search_provider.h", | 48 "search_provider.h", |
| 44 "search_suggestion_parser.cc", | 49 "search_suggestion_parser.cc", |
| 45 "search_suggestion_parser.h", | 50 "search_suggestion_parser.h", |
| 46 "suggestion_answer.cc", | 51 "suggestion_answer.cc", |
| 47 "suggestion_answer.h", | 52 "suggestion_answer.h", |
| 53 "url_index_private_data.cc", | |
| 54 "url_index_private_data.h", | |
| 48 "url_prefix.cc", | 55 "url_prefix.cc", |
| 49 "url_prefix.h", | 56 "url_prefix.h", |
| 50 ] | 57 ] |
| 51 | 58 |
| 52 public_deps = [ | 59 public_deps = [ |
| 53 "//components/metrics/proto", | 60 "//components/metrics/proto", |
| 54 ] | 61 ] |
| 55 deps = [ | 62 deps = [ |
| 63 ":in_memory_url_index_cache_proto", | |
| 56 "//base", | 64 "//base", |
| 57 "//base:i18n", | 65 "//base:i18n", |
| 58 "//components/bookmarks/browser", | 66 "//components/bookmarks/browser", |
| 59 "//components/history/core/browser", | 67 "//components/history/core/browser", |
| 68 "//components/keyed_service/core", | |
| 60 "//components/query_parser", | 69 "//components/query_parser", |
| 61 "//components/resources", | 70 "//components/resources", |
| 62 "//components/search", | 71 "//components/search", |
| 63 "//components/search_engines", | 72 "//components/search_engines", |
| 64 "//components/strings", | 73 "//components/strings", |
| 65 "//components/url_fixer", | 74 "//components/url_fixer", |
| 66 "//components/variations", | 75 "//components/variations", |
| 67 "//components/variations/net", | 76 "//components/variations/net", |
| 68 "//net", | 77 "//net", |
| 78 "//third_party/protobuf:protobuf_lite", | |
| 69 "//ui/base", | 79 "//ui/base", |
| 70 "//url", | 80 "//url", |
| 71 ] | 81 ] |
| 72 } | 82 } |
| 73 | 83 |
| 84 proto_library("in_memory_url_index_cache_proto") { | |
| 85 sources = [ | |
| 86 "in_memory_url_index_cache.proto", | |
| 87 ] | |
| 88 } | |
| 89 | |
| 74 # crash_keys.h is included from //chrome/common and thus can't live with | 90 # crash_keys.h is included from //chrome/common and thus can't live with |
| 75 # the other browser-specific targets. | 91 # the other browser-specific targets. |
| 76 # TODO(mpearson): Remove this target once crbug.com/464926 is closed. | 92 # TODO(mpearson): Remove this target once crbug.com/464926 is closed. |
| 77 static_library("omnibox_crash_keys") { | 93 static_library("omnibox_crash_keys") { |
| 78 sources = [ | 94 sources = [ |
| 79 "crash_keys.cc", | 95 "crash_keys.cc", |
| 80 "crash_keys.h", | 96 "crash_keys.h", |
| 81 ] | 97 ] |
| 82 } | 98 } |
| 83 | 99 |
| (...skipping 25 matching lines...) Expand all Loading... | |
| 109 "suggestion_answer_unittest.cc", | 125 "suggestion_answer_unittest.cc", |
| 110 ] | 126 ] |
| 111 | 127 |
| 112 deps = [ | 128 deps = [ |
| 113 ":omnibox", | 129 ":omnibox", |
| 114 ":test_support", | 130 ":test_support", |
| 115 "//testing/gmock", | 131 "//testing/gmock", |
| 116 "//testing/gtest", | 132 "//testing/gtest", |
| 117 ] | 133 ] |
| 118 } | 134 } |
| OLD | NEW |