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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "webdata/password_web_data_service_win.cc", | 61 "webdata/password_web_data_service_win.cc", |
62 "webdata/password_web_data_service_win.h", | 62 "webdata/password_web_data_service_win.h", |
63 ] | 63 ] |
64 | 64 |
65 deps = [ | 65 deps = [ |
66 "//base", | 66 "//base", |
67 "//components/autofill/core/common", | 67 "//components/autofill/core/common", |
68 "//components/keyed_service/core", | 68 "//components/keyed_service/core", |
69 "//components/os_crypt", | 69 "//components/os_crypt", |
70 "//components/password_manager/core/common", | 70 "//components/password_manager/core/common", |
| 71 "//components/strings", |
71 "//net", | 72 "//net", |
72 "//sql", | 73 "//sql", |
73 "//url", | 74 "//url", |
74 ] | 75 ] |
75 | 76 |
76 if (is_mac) { | 77 if (is_mac) { |
77 # TODO(blundell): Provide the iOS login DB implementation and then | 78 # TODO(blundell): Provide the iOS login DB implementation and then |
78 # also exclude the POSIX one from iOS. http://crbug.com/341429 | 79 # also exclude the POSIX one from iOS. http://crbug.com/341429 |
79 sources -= [ "login_database_posix.cc" ] | 80 sources -= [ "login_database_posix.cc" ] |
80 } else if (is_win) { | 81 } else if (is_win) { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 public_deps = [ | 113 public_deps = [ |
113 ":browser", | 114 ":browser", |
114 ] | 115 ] |
115 deps = [ | 116 deps = [ |
116 "//base", | 117 "//base", |
117 "//components/autofill/core/common", | 118 "//components/autofill/core/common", |
118 "//testing/gmock", | 119 "//testing/gmock", |
119 "//testing/gtest", | 120 "//testing/gtest", |
120 ] | 121 ] |
121 } | 122 } |
OLD | NEW |