summaryrefslogtreecommitdiffstats
path: root/components/omnibox.gypi
diff options
context:
space:
mode:
authorblundell <blundell@chromium.org>2015-06-18 07:41:26 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-18 14:42:10 +0000
commitb0d11e2eeb3db9c48bc8b5e068f2e05c7f633a88 (patch)
tree4aff30f6c4721bd9b85272e76c49e0f20af6f3e1 /components/omnibox.gypi
parentcd4561dd87b6cd6a116d71356a2f5a6c7637105e (diff)
downloadchromium_src-b0d11e2eeb3db9c48bc8b5e068f2e05c7f633a88.zip
chromium_src-b0d11e2eeb3db9c48bc8b5e068f2e05c7f633a88.tar.gz
chromium_src-b0d11e2eeb3db9c48bc8b5e068f2e05c7f633a88.tar.bz2
Componentize HistoryQuickProvider and its supporting cast
The only thing that's slightly non-trivial is build system changes around in_memory_url_index_cache.proto. TBR=phajdan.jr, scottmg Review URL: https://codereview.chromium.org/1182113009 Cr-Commit-Position: refs/heads/master@{#335038}
Diffstat (limited to 'components/omnibox.gypi')
-rw-r--r--components/omnibox.gypi22
1 files changed, 22 insertions, 0 deletions
diff --git a/components/omnibox.gypi b/components/omnibox.gypi
index 30b7f4d..2dfced4 100644
--- a/components/omnibox.gypi
+++ b/components/omnibox.gypi
@@ -13,6 +13,7 @@
'../base/base.gyp:base_i18n',
'../net/net.gyp:net',
'../sql/sql.gyp:sql',
+ '../third_party/protobuf/protobuf.gyp:protobuf_lite',
'../ui/base/ui_base.gyp:ui_base',
'../url/url.gyp:url_lib',
'bookmarks_browser',
@@ -20,6 +21,8 @@
'components_resources.gyp:components_resources',
'components_strings.gyp:components_strings',
'history_core_browser',
+ 'keyed_service_core',
+ 'omnibox_in_memory_url_index_cache_proto',
'query_parser',
'search',
'search_engines',
@@ -55,8 +58,12 @@
'omnibox/bookmark_provider.h',
'omnibox/history_provider.cc',
'omnibox/history_provider.h',
+ 'omnibox/history_quick_provider.cc',
+ 'omnibox/history_quick_provider.h',
'omnibox/history_url_provider.cc',
'omnibox/history_url_provider.h',
+ 'omnibox/in_memory_url_index.cc',
+ 'omnibox/in_memory_url_index.h',
'omnibox/in_memory_url_index_types.cc',
'omnibox/in_memory_url_index_types.h',
'omnibox/keyword_extensions_delegate.cc',
@@ -79,11 +86,26 @@
'omnibox/shortcuts_database.h',
'omnibox/suggestion_answer.cc',
'omnibox/suggestion_answer.h',
+ 'omnibox/url_index_private_data.cc',
+ 'omnibox/url_index_private_data.h',
'omnibox/url_prefix.cc',
'omnibox/url_prefix.h',
],
},
{
+ # Protobuf compiler / generator for the InMemoryURLIndex caching
+ # protocol buffer.
+ # GN version: //components/omnibox:in_memory_url_index_cache_proto
+ 'target_name': 'omnibox_in_memory_url_index_cache_proto',
+ 'type': 'static_library',
+ 'sources': [ 'omnibox/in_memory_url_index_cache.proto', ],
+ 'variables': {
+ 'proto_in_dir': 'omnibox',
+ 'proto_out_dir': 'components/omnibox',
+ },
+ 'includes': [ '../build/protoc.gypi', ],
+ },
+ {
# GN version: //components/omnibox:test_support
'target_name': 'omnibox_test_support',
'type': 'static_library',