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

Unified Diff: components/safe_browsing_db/BUILD.gn

Issue 2062013002: Fetch incremental updates. Store new state in V4Store. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor: Fix DCHECK Created 4 years, 6 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 ab512c6495f86ba66dab49731b03e5864decb283..d149a568babc1f41e6e39e78bbf1cc4e7055c688 100644
--- a/components/safe_browsing_db/BUILD.gn
+++ b/components/safe_browsing_db/BUILD.gn
@@ -17,6 +17,7 @@ proto_library("metadata_proto") {
]
}
+# This target is shared between the desktop and mobile versions.
group("safe_browsing_db_shared") {
deps = [
":database_manager",
@@ -27,6 +28,7 @@ group("safe_browsing_db_shared") {
]
}
+# This target is for the desktop version.
group("safe_browsing_db") {
deps = [
":safe_browsing_db_shared",
@@ -35,6 +37,7 @@ group("safe_browsing_db") {
]
}
+# This target is for the mobile version.
group("safe_browsing_db_mobile") {
deps = [
":remote_database_manager",
@@ -225,7 +228,11 @@ source_set("v4_store") {
"v4_store.cc",
"v4_store.h",
]
+ public_deps = [
+ ":proto",
+ ]
deps = [
+ ":v4_protocol_manager_util",
"//base",
]
}

Powered by Google App Engine
This is Rietveld 408576698