Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(271)

Side by Side Diff: components/omnibox/BUILD.gn

Issue 1191373002: Componentize AutocompleteController and its supporting cast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prep_builtin_provider_for_c14n
Patch Set: Rebase Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/omnibox.gypi ('k') | components/omnibox/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 static_library("omnibox") { 7 static_library("omnibox") {
8 sources = [ 8 sources = [
9 "answers_cache.cc", 9 "answers_cache.cc",
10 "answers_cache.h", 10 "answers_cache.h",
11 "autocomplete_classifier.cc",
12 "autocomplete_classifier.h",
13 "autocomplete_controller.cc",
14 "autocomplete_controller.h",
15 "autocomplete_controller_delegate.h",
11 "autocomplete_input.cc", 16 "autocomplete_input.cc",
12 "autocomplete_input.h", 17 "autocomplete_input.h",
13 "autocomplete_match.cc", 18 "autocomplete_match.cc",
14 "autocomplete_match.h", 19 "autocomplete_match.h",
15 "autocomplete_match_type.cc", 20 "autocomplete_match_type.cc",
16 "autocomplete_match_type.h", 21 "autocomplete_match_type.h",
17 "autocomplete_provider.cc", 22 "autocomplete_provider.cc",
18 "autocomplete_provider.h", 23 "autocomplete_provider.h",
19 "autocomplete_result.cc", 24 "autocomplete_result.cc",
20 "autocomplete_result.h", 25 "autocomplete_result.h",
21 "autocomplete_scheme_classifier.h", 26 "autocomplete_scheme_classifier.h",
22 "base_search_provider.cc", 27 "base_search_provider.cc",
23 "base_search_provider.h", 28 "base_search_provider.h",
24 "bookmark_provider.cc", 29 "bookmark_provider.cc",
25 "bookmark_provider.h", 30 "bookmark_provider.h",
31 "builtin_provider.cc",
32 "builtin_provider.h",
26 "history_provider.cc", 33 "history_provider.cc",
27 "history_provider.h", 34 "history_provider.h",
28 "history_quick_provider.cc", 35 "history_quick_provider.cc",
29 "history_quick_provider.h", 36 "history_quick_provider.h",
30 "history_url_provider.cc", 37 "history_url_provider.cc",
31 "history_url_provider.h", 38 "history_url_provider.h",
32 "in_memory_url_index.cc", 39 "in_memory_url_index.cc",
33 "in_memory_url_index.h", 40 "in_memory_url_index.h",
34 "in_memory_url_index_types.cc", 41 "in_memory_url_index_types.cc",
35 "in_memory_url_index_types.h", 42 "in_memory_url_index_types.h",
(...skipping 20 matching lines...) Expand all
56 "shortcuts_database.cc", 63 "shortcuts_database.cc",
57 "shortcuts_database.h", 64 "shortcuts_database.h",
58 "shortcuts_provider.cc", 65 "shortcuts_provider.cc",
59 "shortcuts_provider.h", 66 "shortcuts_provider.h",
60 "suggestion_answer.cc", 67 "suggestion_answer.cc",
61 "suggestion_answer.h", 68 "suggestion_answer.h",
62 "url_index_private_data.cc", 69 "url_index_private_data.cc",
63 "url_index_private_data.h", 70 "url_index_private_data.h",
64 "url_prefix.cc", 71 "url_prefix.cc",
65 "url_prefix.h", 72 "url_prefix.h",
73 "zero_suggest_provider.cc",
74 "zero_suggest_provider.h",
66 ] 75 ]
67 76
68 public_deps = [ 77 public_deps = [
69 "//components/history/core/browser", 78 "//components/history/core/browser",
70 "//components/metrics/proto", 79 "//components/metrics/proto",
71 ] 80 ]
72 deps = [ 81 deps = [
73 ":in_memory_url_index_cache_proto", 82 ":in_memory_url_index_cache_proto",
74 "//base", 83 "//base",
75 "//base:i18n", 84 "//base:i18n",
76 "//components/bookmarks/browser", 85 "//components/bookmarks/browser",
77 "//components/keyed_service/core", 86 "//components/keyed_service/core",
87 "//components/pref_registry",
78 "//components/query_parser", 88 "//components/query_parser",
79 "//components/resources", 89 "//components/resources",
80 "//components/search", 90 "//components/search",
81 "//components/search_engines", 91 "//components/search_engines",
82 "//components/strings", 92 "//components/strings",
83 "//components/url_fixer", 93 "//components/url_fixer",
84 "//components/variations", 94 "//components/variations",
85 "//components/variations/net", 95 "//components/variations/net",
86 "//net", 96 "//net",
87 "//sql", 97 "//sql",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "suggestion_answer_unittest.cc", 138 "suggestion_answer_unittest.cc",
129 ] 139 ]
130 140
131 deps = [ 141 deps = [
132 ":omnibox", 142 ":omnibox",
133 ":test_support", 143 ":test_support",
134 "//testing/gmock", 144 "//testing/gmock",
135 "//testing/gtest", 145 "//testing/gtest",
136 ] 146 ]
137 } 147 }
OLDNEW
« no previous file with comments | « components/omnibox.gypi ('k') | components/omnibox/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698