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

Unified Diff: components/safe_browsing/BUILD.gn

Issue 2605213002: componentize SafeBrowsingService (Closed)
Patch Set: Marking method as overriding Created 4 years 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/safe_browsing/BUILD.gn
diff --git a/components/safe_browsing/BUILD.gn b/components/safe_browsing/BUILD.gn
index 8b81a6e7378330bf35136cd7ec8cd08928df8769..022ae6731d378ebd089ac9357cf4f6d5dc78d975 100644
--- a/components/safe_browsing/BUILD.gn
+++ b/components/safe_browsing/BUILD.gn
@@ -4,13 +4,23 @@
source_set("safe_browsing") {
sources = [
+ "base_safe_browsing_service.cc",
+ "base_safe_browsing_service.h",
"base_ui_manager.cc",
"base_ui_manager.h",
]
deps = [
"//base:base",
+ "//components/safe_browsing/common:common",
+ "//components/safe_browsing_db:database_manager",
+ "//components/safe_browsing_db:remote_database_manager",
+ "//components/safe_browsing_db:safe_browsing_prefs",
+ "//components/safe_browsing_db:v4_feature_list",
+ "//components/safe_browsing_db:v4_local_database_manager",
"//components/security_interstitials/content:unsafe_resource",
"//content/public/browser:browser",
+ "//google_apis:google_apis",
+ "//net:net",
]
}

Powered by Google App Engine
This is Rietveld 408576698