summaryrefslogtreecommitdiffstats
path: root/components/history.gypi
diff options
context:
space:
mode:
authorhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-25 23:45:36 +0000
committerhashimoto@chromium.org <hashimoto@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-25 23:45:36 +0000
commit73b2d1e7a4295fcb920f54a55895f914882ef02f (patch)
treea158704a3f0feedf9c441305f32bd1cf3f52d596 /components/history.gypi
parent3cf7c148edc58d41f5eb5291395f94a1de880db4 (diff)
downloadchromium_src-73b2d1e7a4295fcb920f54a55895f914882ef02f.zip
chromium_src-73b2d1e7a4295fcb920f54a55895f914882ef02f.tar.gz
chromium_src-73b2d1e7a4295fcb920f54a55895f914882ef02f.tar.bz2
Componentize URLDatabase
Move chrome/browser/history/url_database.{cc,h} to components/history/core/browser. From chrome/browser/history/history_types.{cc,h}: - Move URLID, URLRow and URLResult to url_row.{cc,h} - Move KeywordSearchTermVisit and KeywordSearchTermRow to keyword_search_term.{cc,h} - Move autocomplete threshold related stuff (kLowQualityMatch* constants and two threshold related functions) to url_databse.{cc,h} BUG=387284 TEST=git cl try TBR=sky@chromium.org for include fix under chrome/browser TBR=mmenke@chrmoium.org as an owner of net, a new dependency added to components/history/DEPS TBR=blundell@chromium.org as an owner of components/history.gypi Review URL: https://codereview.chromium.org/339433007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/history.gypi')
-rw-r--r--components/history.gypi10
1 files changed, 9 insertions, 1 deletions
diff --git a/components/history.gypi b/components/history.gypi
index a0c4d83..9de5bea 100644
--- a/components/history.gypi
+++ b/components/history.gypi
@@ -12,13 +12,21 @@
],
'dependencies': [
'../base/base.gyp:base',
+ '../net/net.gyp:net',
'../url/url.gyp:url_lib',
'keyed_service_core',
+ 'query_parser',
],
'sources': [
- 'history/core/browser/history_client.h',
'history/core/browser/history_client.cc',
+ 'history/core/browser/history_client.h',
'history/core/browser/keyword_id.h',
+ 'history/core/browser/keyword_search_term.cc',
+ 'history/core/browser/keyword_search_term.h',
+ 'history/core/browser/url_database.cc',
+ 'history/core/browser/url_database.h',
+ 'history/core/browser/url_row.cc',
+ 'history/core/browser/url_row.h',
],
},
{