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

Unified Diff: components/offline_pages/BUILD.gn

Issue 1226173004: Componentize //chrome/browser/offline_pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated for android port Created 5 years, 5 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
« no previous file with comments | « components/offline_pages.gypi ('k') | components/offline_pages/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/offline_pages/BUILD.gn
diff --git a/components/offline_pages/BUILD.gn b/components/offline_pages/BUILD.gn
index 36cee8587b5b202476d5a7412bc5d7392c740aa0..47f6adc4dd5d713654e19d102ef7cc7f785fde2a 100644
--- a/components/offline_pages/BUILD.gn
+++ b/components/offline_pages/BUILD.gn
@@ -10,6 +10,8 @@ static_library("offline_pages") {
"offline_page_item.h",
"offline_page_metadata_store.cc",
"offline_page_metadata_store.h",
+ "offline_page_metadata_store_impl.cc",
+ "offline_page_metadata_store_impl.h",
"offline_page_model.cc",
"offline_page_model.h",
]
@@ -17,7 +19,10 @@ static_library("offline_pages") {
deps = [
"//base",
"//components/keyed_service/core",
+ "//components/leveldb_proto",
+ "//components/offline_pages/proto:offline_pages_proto",
"//net",
+ "//third_party/leveldatabase",
"//url",
]
}
@@ -25,11 +30,13 @@ static_library("offline_pages") {
source_set("unit_tests") {
testonly = true
sources = [
+ "offline_page_metadata_store_impl_unittest.cc",
"offline_page_model_unittest.cc",
]
deps = [
":offline_pages",
+ "//components/offline_pages/proto:offline_pages_proto",
"//testing/gtest",
]
}
« no previous file with comments | « components/offline_pages.gypi ('k') | components/offline_pages/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698