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

Unified Diff: components/precache.gypi

Issue 27047003: Precache tracking database (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@precache
Patch Set: General fixes, added tests, and moved PrecacheManager into component Created 7 years, 2 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
Index: components/precache.gypi
diff --git a/components/precache.gypi b/components/precache.gypi
index 0f0331b7c41fc90aef69f98fe9408468ac40b221..50bc4916d2805e0ffdc0cd3c435219a829284b88 100644
--- a/components/precache.gypi
+++ b/components/precache.gypi
@@ -8,6 +8,7 @@
'target_name': 'precache',
'type': 'static_library',
'dependencies': [
+ 'precache_content',
'precache_core',
],
'include_dirs': [
@@ -27,10 +28,16 @@
'..',
],
'sources': [
+ 'precache/core/precache_database.cc',
+ 'precache/core/precache_database.h',
'precache/core/precache_fetcher.cc',
'precache/core/precache_fetcher.h',
'precache/core/precache_switches.cc',
'precache/core/precache_switches.h',
+ 'precache/core/precache_statistics_table.cc',
bengr 2013/10/23 19:03:36 alphabetize.
sclittle 2013/10/24 22:11:38 Done.
+ 'precache/core/precache_statistics_table.h',
+ 'precache/core/precache_url_table.cc',
+ 'precache/core/precache_url_table.h',
],
'includes': [ 'precache/precache_defines.gypi', ],
'direct_dependent_settings': {
@@ -40,6 +47,25 @@
},
},
{
+ 'target_name': 'precache_content',
+ 'type': 'static_library',
+ 'dependencies': [
+ 'precache_core_proto',
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_browser',
+ '../url/url.gyp:url_lib',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'precache/content/precache_manager.cc',
+ 'precache/content/precache_manager.h',
+ 'precache/content/precache_manager_factory.cc',
+ 'precache/content/precache_manager_factory.h',
+ ],
+ },
+ {
'target_name': 'precache_core_proto',
'type': 'static_library',
'sources': [

Powered by Google App Engine
This is Rietveld 408576698