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

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: Addressed nits from gcasto@ and rdsmith@. 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
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 907c7ef8691982788968f369ba28ff2b6b306da1..cd414b402642b4642bf4a33dbf435b4122b24f22 100644
--- a/components/password_manager/core/browser/BUILD.gn
+++ b/components/password_manager/core/browser/BUILD.gn
@@ -15,6 +15,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",
@@ -63,6 +66,7 @@ static_library("browser") {
]
deps = [
+ ":proto",
"//base",
"//components/autofill/core/common",
"//components/keyed_service/core",
@@ -70,6 +74,7 @@ static_library("browser") {
"//components/password_manager/core/common",
"//net",
"//sql",
+ '//third_party/protobuf:protobuf_lite',
"//url",
]
@@ -94,6 +99,12 @@ static_library("browser") {
}
}
+proto_library("proto") {
+ sources = [
+ "affiliation_api.proto"
+ ]
+}
+
source_set("test_support") {
testonly = true
sources = [

Powered by Google App Engine
This is Rietveld 408576698