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

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

Issue 2260963003: [Offline pages] Enabling notifications for pages saved later (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing missed TODO Created 4 years, 4 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/downloads/BUILD.gn
diff --git a/components/offline_pages/downloads/BUILD.gn b/components/offline_pages/downloads/BUILD.gn
index 55fd463fdec0f4eaa9c339c143b7d0881f5f01b6..49b8c090bf8bf28bf4148116d5b630347b087298 100644
--- a/components/offline_pages/downloads/BUILD.gn
+++ b/components/offline_pages/downloads/BUILD.gn
@@ -9,6 +9,8 @@ if (is_android) {
# GYP: //components/offline_pages.gypi:offline_pages_ui_adapter
static_library("offline_pages_ui_adapter") {
sources = [
+ "download_notifying_observer.cc",
+ "download_notifying_observer.h",
"download_ui_adapter.cc",
"download_ui_adapter.h",
"download_ui_item.cc",
@@ -19,6 +21,7 @@ static_library("offline_pages_ui_adapter") {
deps = [
"//base",
"//components/offline_pages:offline_pages",
+ "//components/offline_pages/background:background_offliner",
"//url",
]
}
@@ -26,6 +29,7 @@ static_library("offline_pages_ui_adapter") {
source_set("unit_tests") {
testonly = true
sources = [
+ "download_notifying_observer_unittest.cc",
"download_ui_adapter_unittest.cc",
]
@@ -35,6 +39,7 @@ source_set("unit_tests") {
"//base/test:test_support",
"//components/offline_pages:offline_pages",
"//components/offline_pages:test_support",
+ "//components/offline_pages/background:background_offliner",
"//testing/gtest",
]
}

Powered by Google App Engine
This is Rietveld 408576698