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

Side by Side 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: Minor improvements to phrasing. 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 if (is_android) { 5 if (is_android) {
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 } 7 }
8 8
9 config("password_manager_config") { 9 config("password_manager_config") {
10 # Sync (not supported in Android WebView). 10 # Sync (not supported in Android WebView).
11 if (!is_android || !is_android_webview_build) { 11 if (!is_android || !is_android_webview_build) {
12 defines = [ "PASSWORD_MANAGER_ENABLE_SYNC" ] 12 defines = [ "PASSWORD_MANAGER_ENABLE_SYNC" ]
13 } 13 }
14 } 14 }
15 15
16 static_library("browser") { 16 static_library("browser") {
17 sources = [ 17 sources = [
18 "affiliation_fetcher_delegate.h",
19 "affiliation_fetcher.cc",
20 "affiliation_fetcher.h",
18 "affiliation_utils.cc", 21 "affiliation_utils.cc",
19 "affiliation_utils.h", 22 "affiliation_utils.h",
20 "browser_save_password_progress_logger.cc", 23 "browser_save_password_progress_logger.cc",
21 "browser_save_password_progress_logger.h", 24 "browser_save_password_progress_logger.h",
22 "credential_manager_dispatcher.h", 25 "credential_manager_dispatcher.h",
23 "log_receiver.h", 26 "log_receiver.h",
24 "log_router.cc", 27 "log_router.cc",
25 "log_router.h", 28 "log_router.h",
26 "login_database.cc", 29 "login_database.cc",
27 "login_database.h", 30 "login_database.h",
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 public_deps = [ 115 public_deps = [
113 ":browser", 116 ":browser",
114 ] 117 ]
115 deps = [ 118 deps = [
116 "//base", 119 "//base",
117 "//components/autofill/core/common", 120 "//components/autofill/core/common",
118 "//testing/gmock", 121 "//testing/gmock",
119 "//testing/gtest", 122 "//testing/gtest",
120 ] 123 ]
121 } 124 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698