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

Unified Diff: components/password_manager/core/browser/BUILD.gn

Issue 767163005: Add AffiliationFetcher to fetch authoritative affiliation information regarding facets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN build. Created 6 years 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/password_manager/DEPS ('k') | components/password_manager/core/browser/affiliation_api.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 = [
« no previous file with comments | « components/password_manager/DEPS ('k') | components/password_manager/core/browser/affiliation_api.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698