| Index: components/password_manager/core/browser/BUILD.gn
|
| diff --git a/components/password_manager/core/browser/BUILD.gn b/components/password_manager/core/browser/BUILD.gn
|
| index 0c79176cc5e7544fc8ed29dff244ee60e34a787a..27602164049e4d1eb2826eca19d63260088b3afa 100644
|
| --- a/components/password_manager/core/browser/BUILD.gn
|
| +++ b/components/password_manager/core/browser/BUILD.gn
|
| @@ -91,7 +91,7 @@ static_library("browser") {
|
| }
|
| }
|
|
|
| -static_library("test_support") {
|
| +source_set("test_support") {
|
| testonly = true
|
| sources = [
|
| "mock_password_store.cc",
|
| @@ -107,9 +107,14 @@ static_library("test_support") {
|
| ]
|
|
|
| deps = [
|
| + ":browser",
|
| "//base",
|
| "//components/autofill/core/common",
|
| "//testing/gmock",
|
| "//testing/gtest",
|
| ]
|
| +
|
| + forward_dependent_configs_from = [
|
| + ":browser",
|
| + ]
|
| }
|
|
|