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

Unified Diff: components/download/internal/BUILD.gn

Issue 2881173003: Download Service : Added leveldb proto layer (Closed)
Patch Set: Removed Model::Destroy Created 3 years, 7 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 | « no previous file | components/download/internal/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/download/internal/BUILD.gn
diff --git a/components/download/internal/BUILD.gn b/components/download/internal/BUILD.gn
index d1e1e43b885592384ba500f6850a38face85125d..dc7450657f6238e7bcefa56d26a8f9f0419b77ba 100644
--- a/components/download/internal/BUILD.gn
+++ b/components/download/internal/BUILD.gn
@@ -21,6 +21,8 @@ static_library("internal") {
"download_driver.h",
"download_service_impl.cc",
"download_service_impl.h",
+ "download_store.cc",
+ "download_store.h",
"driver_entry.cc",
"driver_entry.h",
"entry.cc",
@@ -28,8 +30,8 @@ static_library("internal") {
"model.h",
"model_impl.cc",
"model_impl.h",
- "noop_store.cc",
- "noop_store.h",
+ "proto_conversions.cc",
+ "proto_conversions.h",
"scheduler/battery_listener.cc",
"scheduler/battery_listener.h",
"scheduler/network_listener.cc",
@@ -39,7 +41,9 @@ static_library("internal") {
deps = [
"//base",
+ "//components/download/internal/proto",
"//components/download/public",
+ "//components/leveldb_proto",
"//net",
]
}
@@ -50,7 +54,9 @@ source_set("unit_tests") {
visibility = [ "//components/download:unit_tests" ]
sources = [
+ "download_store_unittest.cc",
"model_impl_unittest.cc",
+ "proto_conversions_unittest.cc",
"scheduler/battery_listener_unittest.cc",
"scheduler/network_listener_unittest.cc",
]
@@ -58,7 +64,9 @@ source_set("unit_tests") {
deps = [
":internal",
"//base/test:test_support",
+ "//components/download/internal/proto",
"//components/download/internal/test:test_support",
+ "//components/leveldb_proto:test_support",
"//testing/gmock",
"//testing/gtest",
]
« no previous file with comments | « no previous file | components/download/internal/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698