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

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

Issue 1446473002: Enable compilation of //components/autofill on iOS with gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@os_crypt
Patch Set: Created 5 years, 1 month 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 c36ff02819b29c043b3ed5224864e4df33505fad..579d6b9ba2f555b40146155cae0104cbf64b9551 100644
--- a/components/password_manager/core/browser/BUILD.gn
+++ b/components/password_manager/core/browser/BUILD.gn
@@ -48,6 +48,7 @@ source_set("browser") {
"log_router.h",
"login_database.cc",
"login_database.h",
+ "login_database_ios.cc",
"login_database_mac.cc",
"login_database_posix.cc",
"login_database_win.cc",
@@ -125,9 +126,7 @@ source_set("browser") {
"//url",
]
- if (is_mac) {
- # TODO(blundell): Provide the iOS login DB implementation and then
- # also exclude the POSIX one from iOS. http://crbug.com/341429
+ if (is_mac || is_ios) {
sources -= [ "login_database_posix.cc" ]
}

Powered by Google App Engine
This is Rietveld 408576698