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

Unified Diff: components/password_manager.gypi

Issue 1237403003: [Password manager IOS upsteaming] Upstreaming login database (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Histograms Created 5 years, 5 months 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 83e3a66d49817aec2fad4d6f25e04664494ddaf1..1230094fb518c8c810a28d70ef142647b4840976 100644
--- a/components/password_manager.gypi
+++ b/components/password_manager.gypi
@@ -65,6 +65,7 @@
'password_manager/core/browser/log_router.h',
'password_manager/core/browser/login_database.cc',
'password_manager/core/browser/login_database.h',
+ 'password_manager/core/browser/login_database_ios.cc',
vabr (Chromium) 2015/07/22 12:44:31 Does this compile outside iOS? If not, we should m
'password_manager/core/browser/login_database_mac.cc',
'password_manager/core/browser/login_database_posix.cc',
'password_manager/core/browser/login_database_win.cc',
@@ -111,10 +112,13 @@
'password_manager/core/browser/webdata/password_web_data_service_win.h',
],
'conditions': [
+ ['OS=="ios"', {
+ 'sources!': [
+ 'password_manager/core/browser/login_database_posix.cc',
+ ],
+ }],
['OS=="mac"', {
'sources!': [
- # TODO(blundell): Provide the iOS login DB implementation and then
- # also exclude the POSIX one from iOS. http://crbug.com/341429
'password_manager/core/browser/login_database_posix.cc',
],
}],

Powered by Google App Engine
This is Rietveld 408576698