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

Unified Diff: components/safe_browsing_db/BUILD.gn

Issue 1658913003: SafeBrowsing: Move V4ProtocolManager to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sb-v4-3
Patch Set: Add build dependency Created 4 years, 11 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
« no previous file with comments | « components/safe_browsing_db.gypi ('k') | components/safe_browsing_db/v4_protocol_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/safe_browsing_db/BUILD.gn
diff --git a/components/safe_browsing_db/BUILD.gn b/components/safe_browsing_db/BUILD.gn
index 5315e6eb6bee490af46e25c9e3e58c95056e22ab..3b96f05fa437356b702f56acb57c3186f9701320 100644
--- a/components/safe_browsing_db/BUILD.gn
+++ b/components/safe_browsing_db/BUILD.gn
@@ -79,6 +79,20 @@ source_set("prefix_set") {
]
}
+source_set("v4_protocol_manager") {
+ sources = [
+ "v4_protocol_manager.cc",
+ "v4_protocol_manager.h",
+ ]
+ deps = [
+ ":proto",
+ ":util",
+ "//base",
+ "//net",
+ "//url:url",
+ ]
+}
+
source_set("remote_database_manager") {
sources = [
"remote_database_manager.cc",
@@ -150,11 +164,16 @@ source_set("unit_tests") {
sources = [
"prefix_set_unittest.cc",
"util_unittest.cc",
+ "v4_protocol_manager_unittest.cc",
]
deps = [
":prefix_set",
+ ":proto",
":util",
+ ":v4_protocol_manager",
"//base",
+ "//net",
+ "//net:test_support",
"//testing/gtest",
"//url",
]
« no previous file with comments | « components/safe_browsing_db.gypi ('k') | components/safe_browsing_db/v4_protocol_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698