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

Unified Diff: components/safe_browsing_db/BUILD.gn

Issue 1952843003: Skeleton of the overall design for the database for Pver4 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: components/safe_browsing_db/BUILD.gn
diff --git a/components/safe_browsing_db/BUILD.gn b/components/safe_browsing_db/BUILD.gn
index d36c5e5fdb2403de50011f6f71558aa4af951b88..1162e58773bfaebbdcbd3fa362af442eb45c8f3d 100644
--- a/components/safe_browsing_db/BUILD.gn
+++ b/components/safe_browsing_db/BUILD.gn
@@ -155,6 +155,30 @@ source_set("util") {
}
}
+source_set("v4_database") {
+ sources = [
+ "v4_database.cc",
+ "v4_database.h",
+ ]
+ deps = [
+ "//base",
+ ]
+}
+
+source_set("v4_database_impl") {
+ sources = [
+ "v4_database_impl.cc",
+ "v4_database_impl.h",
+ ]
+ public_deps = [
+ ":proto",
+ ]
+ deps = [
+ ":v4_database",
+ ":v4_protocol_manager_util",
+ ]
+}
+
source_set("v4_get_hash_protocol_manager") {
sources = [
"v4_get_hash_protocol_manager.cc",
@@ -181,6 +205,8 @@ source_set("v4_local_database_manager") {
":database_manager",
":hit_report",
":proto",
+ ":v4_database",
+ ":v4_database_impl",
":v4_protocol_manager_util",
":v4_update_protocol_manager",
"//base",

Powered by Google App Engine
This is Rietveld 408576698