| Index: components/safe_browsing/password_protection/BUILD.gn
|
| diff --git a/components/safe_browsing/password_protection/BUILD.gn b/components/safe_browsing/password_protection/BUILD.gn
|
| index d852f1cf8faacbce3fb4ebce702cc2517940ae0e..ae6404596e3e1b55d38ff9b17faf8930ef864428 100644
|
| --- a/components/safe_browsing/password_protection/BUILD.gn
|
| +++ b/components/safe_browsing/password_protection/BUILD.gn
|
| @@ -4,18 +4,26 @@
|
|
|
| source_set("password_protection") {
|
| sources = [
|
| + "password_protection_request.cc",
|
| + "password_protection_request.h",
|
| "password_protection_service.cc",
|
| "password_protection_service.h",
|
| ]
|
|
|
| + public_deps = [
|
| + "//google_apis:google_apis",
|
| + ]
|
| +
|
| deps = [
|
| "//base:base",
|
| "//components/content_settings/core/browser:browser",
|
| + "//components/data_use_measurement/core:core",
|
| "//components/history/core/browser:browser",
|
| "//components/safe_browsing:csd_proto",
|
| "//components/safe_browsing_db:database_manager",
|
| "//components/safe_browsing_db:v4_protocol_manager_util",
|
| "//content/public/browser:browser",
|
| + "//net:net",
|
| "//third_party/protobuf:protobuf_lite",
|
| ]
|
| }
|
| @@ -32,6 +40,7 @@ source_set("password_protection_unittest") {
|
| "//components/safe_browsing_db:test_database_manager",
|
| "//components/sync_preferences:test_support",
|
| "//content/test:test_support",
|
| + "//net:test_support",
|
| "//testing/gmock",
|
| "//testing/gtest",
|
| "//third_party/protobuf:protobuf_lite",
|
|
|