| OLD | NEW | 
|---|
| 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). | 
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 45     "password_store.h", | 45     "password_store.h", | 
| 46     "password_store_change.h", | 46     "password_store_change.h", | 
| 47     "password_store_consumer.cc", | 47     "password_store_consumer.cc", | 
| 48     "password_store_consumer.h", | 48     "password_store_consumer.h", | 
| 49     "password_store_default.cc", | 49     "password_store_default.cc", | 
| 50     "password_store_default.h", | 50     "password_store_default.h", | 
| 51     "password_store_sync.cc", | 51     "password_store_sync.cc", | 
| 52     "password_store_sync.h", | 52     "password_store_sync.h", | 
| 53     "psl_matching_helper.cc", | 53     "psl_matching_helper.cc", | 
| 54     "psl_matching_helper.h", | 54     "psl_matching_helper.h", | 
|  | 55     "webdata/logins_table.cc", | 
|  | 56     "webdata/logins_table.h", | 
|  | 57     "webdata/logins_table_win.cc", | 
|  | 58     "webdata/password_web_data_service_win.cc", | 
|  | 59     "webdata/password_web_data_service_win.h", | 
| 55   ] | 60   ] | 
| 56 | 61 | 
| 57   deps = [ | 62   deps = [ | 
| 58     "//base", | 63     "//base", | 
| 59     "//components/autofill/core/common", | 64     "//components/autofill/core/common", | 
| 60     "//components/keyed_service/core", | 65     "//components/keyed_service/core", | 
| 61     "//components/os_crypt", | 66     "//components/os_crypt", | 
| 62     "//components/password_manager/core/common", | 67     "//components/password_manager/core/common", | 
| 63     "//net", | 68     "//net", | 
| 64     "//sql", | 69     "//sql", | 
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 100     "test_password_store.h", | 105     "test_password_store.h", | 
| 101   ] | 106   ] | 
| 102 | 107 | 
| 103   deps = [ | 108   deps = [ | 
| 104     "//base", | 109     "//base", | 
| 105     "//components/autofill/core/common", | 110     "//components/autofill/core/common", | 
| 106     "//testing/gmock", | 111     "//testing/gmock", | 
| 107     "//testing/gtest", | 112     "//testing/gtest", | 
| 108   ] | 113   ] | 
| 109 } | 114 } | 
| OLD | NEW | 
|---|