| 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 45e63ac5028af51e98d13e457a2e4c680a7b74fc..6fa22c32c476294481f4d997c4c5b3b09b6f6c92 100644
|
| --- a/components/password_manager/core/browser/BUILD.gn
|
| +++ b/components/password_manager/core/browser/BUILD.gn
|
| @@ -2,6 +2,8 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| +import("//third_party/protobuf/proto_library.gni")
|
| +
|
| if (is_android) {
|
| import("//build/config/android/config.gni")
|
| }
|
| @@ -15,6 +17,9 @@ config("password_manager_config") {
|
|
|
| static_library("browser") {
|
| sources = [
|
| + "affiliation_fetcher_delegate.h",
|
| + "affiliation_fetcher.cc",
|
| + "affiliation_fetcher.h",
|
| "affiliation_utils.cc",
|
| "affiliation_utils.h",
|
| "browser_save_password_progress_logger.cc",
|
| @@ -65,6 +70,7 @@ static_library("browser") {
|
| ]
|
|
|
| deps = [
|
| + ":proto",
|
| "//base",
|
| "//components/autofill/core/common",
|
| "//components/keyed_service/core",
|
| @@ -73,6 +79,7 @@ static_library("browser") {
|
| "//components/strings",
|
| "//net",
|
| "//sql",
|
| + "//third_party/protobuf:protobuf_lite",
|
| "//url",
|
| ]
|
|
|
| @@ -97,6 +104,12 @@ static_library("browser") {
|
| }
|
| }
|
|
|
| +proto_library("proto") {
|
| + sources = [
|
| + "affiliation_api.proto",
|
| + ]
|
| +}
|
| +
|
| source_set("test_support") {
|
| testonly = true
|
| sources = [
|
|
|