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

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: 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 05dcc82349fc85126806c2ded483a842721d4a84..46f4a7e863765ba4d6e420b7c18c6da45c8c2e92 100644
--- a/components/omnibox/BUILD.gn
+++ b/components/omnibox/BUILD.gn
@@ -1,6 +1,7 @@
# Copyright 2014 The Chromium Authors. All rights reserved.
# 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")
Peter Kasting 2015/06/16 21:58:29 Nit: Blank line above this
blundell 2015/06/17 14:16:18 Done.
static_library("omnibox") {
sources = [
@@ -23,8 +24,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",
@@ -45,6 +50,8 @@ static_library("omnibox") {
"search_suggestion_parser.h",
"suggestion_answer.cc",
"suggestion_answer.h",
+ "url_index_private_data.cc",
+ "url_index_private_data.h",
"url_prefix.cc",
"url_prefix.h",
]
@@ -53,10 +60,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",
@@ -66,11 +75,18 @@ static_library("omnibox") {
"//components/variations",
"//components/variations/net",
"//net",
+ "//third_party/protobuf:protobuf_lite",
"//ui/base",
"//url",
]
}
+proto_library("in_memory_url_index_cache_proto") {
+ sources = [
+ "in_memory_url_index_cache.proto",
+ ]
+}
+
# crash_keys.h is included from //chrome/common and thus can't live with
# the other browser-specific targets.
# TODO(mpearson): Remove this target once crbug.com/464926 is closed.
« 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