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

Unified Diff: components/password_manager.gypi

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.gypi
diff --git a/components/password_manager.gypi b/components/password_manager.gypi
index f5728812168a548f59321bb2479e3d7c6f1c4e63..d832e82c5d1b27721f9efb87cc420c121403b929 100644
--- a/components/password_manager.gypi
+++ b/components/password_manager.gypi
@@ -12,17 +12,22 @@
'../base/base.gyp:base',
'../net/net.gyp:net',
'../sql/sql.gyp:sql',
+ '../third_party/protobuf/protobuf.gyp:protobuf_lite',
'../url/url.gyp:url_lib',
'autofill_core_common',
'keyed_service_core',
'os_crypt',
'password_manager_core_common',
+ 'password_manager_core_browser_proto',
],
'include_dirs': [
'..',
],
'sources': [
# Note: sources list duplicated in GN build.
+ 'password_manager/core/browser/affiliation_fetcher_delegate.h',
+ 'password_manager/core/browser/affiliation_fetcher.cc',
+ 'password_manager/core/browser/affiliation_fetcher.h',
'password_manager/core/browser/affiliation_utils.cc',
'password_manager/core/browser/affiliation_utils.h',
'password_manager/core/browser/browser_save_password_progress_logger.cc',
@@ -110,6 +115,19 @@
'msvs_disabled_warnings': [ 4267, ],
},
{
+ # GN version: //components/password_manager/core/browser:proto
+ 'target_name': 'password_manager_core_browser_proto',
+ 'type': 'static_library',
+ 'sources': [
+ 'password_manager/core/browser/affiliation_api.proto'
+ ],
+ 'variables': {
+ 'proto_in_dir': 'password_manager/core/browser',
+ 'proto_out_dir': 'components/password_manager/core/browser',
+ },
+ 'includes': ['../build/protoc.gypi'],
+ },
+ {
# GN version: //components/password_manager/core/browser:test_support
'target_name': 'password_manager_core_browser_test_support',
'type': 'static_library',

Powered by Google App Engine
This is Rietveld 408576698