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

Unified Diff: components/omnibox/BUILD.gn

Issue 1182113009: Componentize HistoryQuickProvider and its supporting cast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/omnibox.gypi ('k') | components/omnibox/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/omnibox/BUILD.gn
diff --git a/components/omnibox/BUILD.gn b/components/omnibox/BUILD.gn
index f2d5de3aae3a120fcef100e90f8a0d698de1e8c3..c119dea84d72cad3aa0276b22f16cba0233fa049 100644
--- a/components/omnibox/BUILD.gn
+++ b/components/omnibox/BUILD.gn
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//third_party/protobuf/proto_library.gni")
+
static_library("omnibox") {
sources = [
"answers_cache.cc",
@@ -23,8 +25,12 @@ static_library("omnibox") {
"bookmark_provider.h",
"history_provider.cc",
"history_provider.h",
+ "history_quick_provider.cc",
+ "history_quick_provider.h",
"history_url_provider.cc",
"history_url_provider.h",
+ "in_memory_url_index.cc",
+ "in_memory_url_index.h",
"in_memory_url_index_types.cc",
"in_memory_url_index_types.h",
"keyword_extensions_delegate.cc",
@@ -47,6 +53,8 @@ static_library("omnibox") {
"shortcuts_database.h",
"suggestion_answer.cc",
"suggestion_answer.h",
+ "url_index_private_data.cc",
+ "url_index_private_data.h",
"url_prefix.cc",
"url_prefix.h",
]
@@ -55,10 +63,12 @@ static_library("omnibox") {
"//components/metrics/proto",
]
deps = [
+ ":in_memory_url_index_cache_proto",
"//base",
"//base:i18n",
"//components/bookmarks/browser",
"//components/history/core/browser",
+ "//components/keyed_service/core",
"//components/query_parser",
"//components/resources",
"//components/search",
@@ -69,11 +79,18 @@ static_library("omnibox") {
"//components/variations/net",
"//net",
"//sql",
+ "//third_party/protobuf:protobuf_lite",
"//ui/base",
"//url",
]
}
+proto_library("in_memory_url_index_cache_proto") {
+ sources = [
+ "in_memory_url_index_cache.proto",
+ ]
+}
+
static_library("test_support") {
sources = [
"test_scheme_classifier.cc",
« 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