diff options
author | sdefresne <sdefresne@chromium.org> | 2015-03-12 11:49:12 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-12 18:50:31 +0000 |
commit | 506dd521e1f6934a997e051481da3fda2098a354 (patch) | |
tree | 5741833876ae8f92957ad0e9717f2d5fba991049 /components/history.gypi | |
parent | c4622464ba3fdb5d16cf99125ea71bc6fb83d30e (diff) | |
download | chromium_src-506dd521e1f6934a997e051481da3fda2098a354.zip chromium_src-506dd521e1f6934a997e051481da3fda2098a354.tar.gz chromium_src-506dd521e1f6934a997e051481da3fda2098a354.tar.bz2 |
Componentize HistoryService, HistoryBackend and related classes
Move a bunch of files from chrome/browser/history to components/history as
they have no problematic dependency anymore (move them in a single pass as
they have circular #include).
Update DEPS, dependencies in gyp/gn files and #include. Files were moved
with tools/git/move_source_file.py and #include fixes were automated.
BUG=453790
Review URL: https://codereview.chromium.org/961873003
Cr-Commit-Position: refs/heads/master@{#320332}
Diffstat (limited to 'components/history.gypi')
-rw-r--r-- | components/history.gypi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/components/history.gypi b/components/history.gypi index 75be781..7bf0dd0 100644 --- a/components/history.gypi +++ b/components/history.gypi @@ -17,6 +17,7 @@ '../net/net.gyp:net', '../skia/skia.gyp:skia', '../sql/sql.gyp:sql', + '../sync/sync.gyp:sync', '../third_party/sqlite/sqlite.gyp:sqlite', '../ui/base/ui_base.gyp:ui_base', '../ui/gfx/gfx.gyp:gfx', @@ -28,6 +29,8 @@ ], 'sources': [ # Note: sources list duplicated in GN build. + 'history/core/browser/delete_directive_handler.cc', + 'history/core/browser/delete_directive_handler.h', 'history/core/browser/download_constants.h', 'history/core/browser/download_database.cc', 'history/core/browser/download_database.h', @@ -37,6 +40,8 @@ 'history/core/browser/download_types.h', 'history/core/browser/expire_history_backend.cc', 'history/core/browser/expire_history_backend.h', + 'history/core/browser/history_backend.cc', + 'history/core/browser/history_backend.h', 'history/core/browser/history_backend_notifier.h', 'history/core/browser/history_backend_observer.h', 'history/core/browser/history_client.cc', @@ -51,11 +56,15 @@ 'history/core/browser/history_db_task.h', 'history/core/browser/history_match.cc', 'history/core/browser/history_match.h', + 'history/core/browser/history_service.cc', + 'history/core/browser/history_service.h', 'history/core/browser/history_service_observer.h', 'history/core/browser/history_types.cc', 'history/core/browser/history_types.h', 'history/core/browser/in_memory_database.cc', 'history/core/browser/in_memory_database.h', + 'history/core/browser/in_memory_history_backend.cc', + 'history/core/browser/in_memory_history_backend.h', 'history/core/browser/keyword_id.h', 'history/core/browser/keyword_search_term.cc', 'history/core/browser/keyword_search_term.h', @@ -72,6 +81,8 @@ 'history/core/browser/top_sites_database.cc', 'history/core/browser/top_sites_database.h', 'history/core/browser/top_sites_observer.h', + 'history/core/browser/typed_url_syncable_service.cc', + 'history/core/browser/typed_url_syncable_service.h', 'history/core/browser/url_database.cc', 'history/core/browser/url_database.h', 'history/core/browser/url_row.cc', @@ -172,8 +183,11 @@ '../base/base.gyp:base', '../content/content.gyp:content_browser', 'history_core_browser', + 'visitedlink_browser', ], 'sources': [ + 'history/content/browser/content_visit_delegate.cc', + 'history/content/browser/content_visit_delegate.h', 'history/content/browser/download_constants_utils.cc', 'history/content/browser/download_constants_utils.h', 'history/content/browser/history_context_helper.cc', |