summaryrefslogtreecommitdiffstats
path: root/chrome/chrome_browser.gypi
diff options
context:
space:
mode:
authormrossetti@chromium.org <mrossetti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 14:18:26 +0000
committermrossetti@chromium.org <mrossetti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-02-24 14:18:26 +0000
commit6c6e2e851954d14c5d183a624f842f55c1241296 (patch)
tree8fe3c11fac71c2ea9bfbdaf1c205a225bc4b8a84 /chrome/chrome_browser.gypi
parent61623711e224217f24269ec1ba5554e3e908b92c (diff)
downloadchromium_src-6c6e2e851954d14c5d183a624f842f55c1241296.zip
chromium_src-6c6e2e851954d14c5d183a624f842f55c1241296.tar.gz
chromium_src-6c6e2e851954d14c5d183a624f842f55c1241296.tar.bz2
Revert 75882 - Add caching of the InMemoryURLIndex (part of the HistoryQuickProvider) part 1. (Transactions will be introduced in the next submission.) Fixed a problem in the caching of search results as the user types each character in a search term. Updated the unit test associated with that code.
Added (temporary) flag which can be used to turn on the HQP (enable-history-quick-provider); also added it to about:flags. Previously reviewed as http://codereview.chromium.org/6286029/. BUG=19736,60107 TEST=Added unit tests. Review URL: http://codereview.chromium.org/6581024 TBR=mrossetti@chromium.org Review URL: http://codereview.chromium.org/6575032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75883 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/chrome_browser.gypi')
-rw-r--r--chrome/chrome_browser.gypi48
1 files changed, 0 insertions, 48 deletions
diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi
index 972f1bc..b290923 100644
--- a/chrome/chrome_browser.gypi
+++ b/chrome/chrome_browser.gypi
@@ -17,7 +17,6 @@
'common',
'common_net',
'debugger',
- 'in_memory_url_index_cache_proto',
'installer_util',
'platform_locale_settings',
'profile_import',
@@ -1233,7 +1232,6 @@
'browser/history/in_memory_history_backend.h',
'browser/history/in_memory_url_index.cc',
'browser/history/in_memory_url_index.h',
- '<(protoc_out_dir)/chrome/browser/history/in_memory_url_index_cache.pb.cc',
'browser/history/page_usage_data.cc',
'browser/history/page_usage_data.h',
'browser/history/query_parser.cc',
@@ -4497,52 +4495,6 @@
'../third_party/protobuf/protobuf.gyp:protobuf_lite',
],
},
- {
- # Protobuf compiler / generator for the InMemoryURLIndex caching
- # protocol buffer.
- 'target_name': 'in_memory_url_index_cache_proto',
- 'type': 'none',
- 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
- 'rules': [
- {
- 'rule_name': 'genproto',
- 'extension': 'proto',
- 'inputs': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
- ],
- 'variables': {
- # The protoc compiler requires a proto_path argument with the
- # directory containing the .proto file.
- # There's no generator variable that corresponds to this, so fake
- # it.
- 'rule_input_relpath': 'browser/history',
- },
- 'outputs': [
- '<(protoc_out_dir)/chrome/<(rule_input_relpath)/<(RULE_INPUT_ROOT).pb.h',
- '<(protoc_out_dir)/chrome/<(rule_input_relpath)/<(RULE_INPUT_ROOT).pb.cc',
- ],
- 'action': [
- '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFIX)',
- '--proto_path=./<(rule_input_relpath)',
- './<(rule_input_relpath)/<(RULE_INPUT_ROOT)<(RULE_INPUT_EXT)',
- '--cpp_out=<(protoc_out_dir)/chrome/<(rule_input_relpath)',
- ],
- 'message': 'Generating C++ code from <(RULE_INPUT_PATH)',
- },
- ],
- 'dependencies': [
- '../third_party/protobuf/protobuf.gyp:protobuf_lite',
- '../third_party/protobuf/protobuf.gyp:protoc#host',
- ],
- 'direct_dependent_settings': {
- 'include_dirs': [
- '<(protoc_out_dir)',
- ]
- },
- 'export_dependent_settings': [
- '../third_party/protobuf/protobuf.gyp:protobuf_lite',
- ],
- },
],
}