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

Unified Diff: chrome/chrome_browser.gypi

Issue 963823003: Move InMemoryURLIndex into chrome/browser/autocomplete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shortcut-database
Patch Set: Fixing win_chromium_x64_rel_ng build Created 5 years, 9 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 | « chrome/browser/ui/BUILD.gn ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/chrome_browser.gypi
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index be4f0d3f0a4fee4c9cb14093483c8a11e0746f4b..2e130f3534a523fca073a7e84e2e6d8af20fc506 100644
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -1193,6 +1193,12 @@
'browser/autocomplete/history_quick_provider.h',
'browser/autocomplete/history_url_provider.cc',
'browser/autocomplete/history_url_provider.h',
+ 'browser/autocomplete/in_memory_url_index.cc',
+ 'browser/autocomplete/in_memory_url_index.h',
+ 'browser/autocomplete/in_memory_url_index_types.cc',
+ 'browser/autocomplete/in_memory_url_index_types.h',
+ 'browser/autocomplete/scored_history_match.cc',
+ 'browser/autocomplete/scored_history_match.h',
'browser/autocomplete/scored_history_match_builder_impl.cc',
'browser/autocomplete/scored_history_match_builder_impl.h',
'browser/autocomplete/shortcuts_backend.cc',
@@ -1203,6 +1209,8 @@
'browser/autocomplete/shortcuts_database.h',
'browser/autocomplete/shortcuts_provider.cc',
'browser/autocomplete/shortcuts_provider.h',
+ 'browser/autocomplete/url_index_private_data.cc',
+ 'browser/autocomplete/url_index_private_data.h',
'browser/autocomplete/zero_suggest_provider.cc',
'browser/autocomplete/zero_suggest_provider.h',
],
@@ -1569,16 +1577,12 @@
'browser/history/history_utils.h',
'browser/history/in_memory_history_backend.cc',
'browser/history/in_memory_history_backend.h',
- 'browser/history/in_memory_url_index.cc',
- 'browser/history/in_memory_url_index.h',
'browser/history/top_sites_factory.cc',
'browser/history/top_sites_factory.h',
'browser/history/top_sites_impl.cc',
'browser/history/top_sites_impl.h',
'browser/history/typed_url_syncable_service.cc',
'browser/history/typed_url_syncable_service.h',
- 'browser/history/url_index_private_data.cc',
- 'browser/history/url_index_private_data.h',
'browser/history/web_history_service_factory.cc',
'browser/history/web_history_service_factory.h',
],
@@ -2900,6 +2904,7 @@
'chrome_resources.gyp:theme_resources',
'common',
'common_net',
+ 'in_memory_url_index_cache_proto',
'probe_message_proto',
'../components/components.gyp:autofill_core_browser',
'../components/components.gyp:bookmarks_browser',
@@ -3561,6 +3566,19 @@
],
},
{
+ # Protobuf compiler / generator for the InMemoryURLIndex caching
+ # protocol buffer.
+ # GN version: //chrome/browser/autocomplete:in_memory_url_index_cache_proto
+ 'target_name': 'in_memory_url_index_cache_proto',
+ 'type': 'static_library',
+ 'sources': [ 'browser/autocomplete/in_memory_url_index_cache.proto', ],
+ 'variables': {
+ 'proto_in_dir': 'browser/autocomplete',
+ 'proto_out_dir': 'chrome/browser/autocomplete',
+ },
+ 'includes': [ '../build/protoc.gypi', ],
+ },
+ {
# Protobuf compiler / generator for the fraudulent certificate reporting
# protocol buffer.
# GN version: //chrome/browser/net:cert_logger_proto
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | chrome/chrome_browser_chromeos.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698