diff options
author | sdefresne@chromium.org <sdefresne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 14:43:52 +0000 |
---|---|---|
committer | sdefresne@chromium.org <sdefresne@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 14:43:52 +0000 |
commit | ad34610c7c216f84e25de15d87215ca049b13404 (patch) | |
tree | b301146b6ab0e2f6a88c3a8d8135723b7ba3b81f /components/history.gypi | |
parent | bfd666154471a2d18da5362b852d0931c99e21e0 (diff) | |
download | chromium_src-ad34610c7c216f84e25de15d87215ca049b13404.zip chromium_src-ad34610c7c216f84e25de15d87215ca049b13404.tar.gz chromium_src-ad34610c7c216f84e25de15d87215ca049b13404.tar.bz2 |
Abstract history dependencies on bookmarks through HistoryClient
Add methods to abstract BookmarkService and BookmarkModel methods used
by HistoryService through the HistoryClient interface.
BUG=371825
TBR=sky
Review URL: https://codereview.chromium.org/285233012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274824 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'components/history.gypi')
-rw-r--r-- | components/history.gypi | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/components/history.gypi b/components/history.gypi index 8b7821e..1a17a6c 100644 --- a/components/history.gypi +++ b/components/history.gypi @@ -6,16 +6,34 @@ 'targets': [ { 'target_name': 'history_core_browser', - 'type': 'none', + 'type': 'static_library', 'include_dirs': [ '..', ], 'dependencies': [ '../base/base.gyp:base', + '../url/url.gyp:url_lib', 'keyed_service_core', ], 'sources': [ 'history/core/browser/history_client.h', + 'history/core/browser/history_client.cc', + ], + }, + { + 'target_name': 'history_core_test_support', + 'type': 'static_library', + 'include_dirs': [ + '..', + ], + 'dependencies': [ + 'history_core_browser', + '../base/base.gyp:base', + '../url/url.gyp:url_lib', + ], + 'sources': [ + 'history/core/test/history_client_fake_bookmarks.cc', + 'history/core/test/history_client_fake_bookmarks.h', ], }, ], |