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

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

Issue 2359933007: [Offline pages] Introduces TaskQueue to serialize tasks that asynchronously access SQLStore (Closed)
Patch Set: Created 4 years, 3 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/offline_pages/core/BUILD.gn
diff --git a/components/offline_pages/request_header/BUILD.gn b/components/offline_pages/core/BUILD.gn
similarity index 69%
copy from components/offline_pages/request_header/BUILD.gn
copy to components/offline_pages/core/BUILD.gn
index 711623cc3481ce69aee7d0bf41b1812ca406ff85..f804fcbd06d8faf7f7636b28e8924847fc67b947 100644
--- a/components/offline_pages/request_header/BUILD.gn
+++ b/components/offline_pages/core/BUILD.gn
@@ -6,10 +6,10 @@ if (is_android) {
import("//build/config/android/rules.gni")
}
-static_library("request_header") {
+static_library("offline_pages_core") {
sources = [
- "offline_page_header.cc",
- "offline_page_header.h",
+ "task_queue.cc",
Pete Williamson 2016/09/27 23:49:47 What happened to offline_page_header? Did it get
fgorski 2016/09/28 22:19:28 I think this is a quirkiness of the diffing system
+ "task_queue.h",
]
deps = [
@@ -20,13 +20,12 @@ static_library("request_header") {
source_set("unit_tests") {
testonly = true
sources = [
- "offline_page_header_unittest.cc",
+ "task_queue_unittest.cc",
]
deps = [
- ":request_header",
+ ":offline_pages_core",
"//base",
"//base/test:test_support",
- "//testing/gtest",
]
}

Powered by Google App Engine
This is Rietveld 408576698