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

Unified Diff: components/offline_pages/background/BUILD.gn

Issue 1932953002: [Offline pages] Empty RequestQueue and SavePageRequest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing nits from Pete Created 4 years, 8 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/background/request_queue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/offline_pages/background/BUILD.gn
diff --git a/components/offline_pages/background/BUILD.gn b/components/offline_pages/background/BUILD.gn
index 6f9c3ff553e87082d3a266a8cb80c9856ce329bb..2f4b970215d60498c11659ffe0b47f534bdbe177 100644
--- a/components/offline_pages/background/BUILD.gn
+++ b/components/offline_pages/background/BUILD.gn
@@ -12,6 +12,10 @@ static_library("background_offliner") {
"offliner.h",
"request_coordinator.cc",
"request_coordinator.h",
+ "request_queue.cc",
+ "request_queue.h",
+ "save_page_request.cc",
+ "save_page_request.h",
"scheduler.h",
]
@@ -22,3 +26,18 @@ static_library("background_offliner") {
"//url",
]
}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "save_page_request_unittest.cc",
+ ]
+
+ deps = [
+ ":background_offliner",
+ "//base",
+ "//components/offline_pages:offline_pages",
+ "//testing/gtest",
+ "//url",
+ ]
+}
« no previous file with comments | « components/offline_pages.gypi ('k') | components/offline_pages/background/request_queue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698