| 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 import("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 "browser_save_password_progress_logger.cc", | 29 "browser_save_password_progress_logger.cc", |
| 30 "browser_save_password_progress_logger.h", | 30 "browser_save_password_progress_logger.h", |
| 31 "credential_manager_password_form_manager.cc", | 31 "credential_manager_password_form_manager.cc", |
| 32 "credential_manager_password_form_manager.h", | 32 "credential_manager_password_form_manager.h", |
| 33 "credential_manager_pending_request_task.cc", | 33 "credential_manager_pending_request_task.cc", |
| 34 "credential_manager_pending_request_task.h", | 34 "credential_manager_pending_request_task.h", |
| 35 "credential_manager_pending_require_user_mediation_task.cc", | 35 "credential_manager_pending_require_user_mediation_task.cc", |
| 36 "credential_manager_pending_require_user_mediation_task.h", | 36 "credential_manager_pending_require_user_mediation_task.h", |
| 37 "export/csv_writer.cc", | 37 "export/csv_writer.cc", |
| 38 "export/csv_writer.h", | 38 "export/csv_writer.h", |
| 39 "export/password_exporter.cc", |
| 40 "export/password_exporter.h", |
| 39 "facet_manager.cc", | 41 "facet_manager.cc", |
| 40 "facet_manager.h", | 42 "facet_manager.h", |
| 41 "facet_manager_host.h", | 43 "facet_manager_host.h", |
| 42 "import/csv_reader.cc", | 44 "import/csv_reader.cc", |
| 43 "import/csv_reader.h", | 45 "import/csv_reader.h", |
| 46 "import/password_importer.cc", |
| 47 "import/password_importer.h", |
| 44 "keychain_migration_status_mac.h", | 48 "keychain_migration_status_mac.h", |
| 45 "log_receiver.h", | 49 "log_receiver.h", |
| 46 "log_router.cc", | 50 "log_router.cc", |
| 47 "log_router.h", | 51 "log_router.h", |
| 48 "login_database.cc", | 52 "login_database.cc", |
| 49 "login_database.h", | 53 "login_database.h", |
| 50 "login_database_mac.cc", | 54 "login_database_mac.cc", |
| 51 "login_database_posix.cc", | 55 "login_database_posix.cc", |
| 52 "login_database_win.cc", | 56 "login_database_win.cc", |
| 53 "login_model.h", | 57 "login_model.h", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 79 "password_store_default.h", | 83 "password_store_default.h", |
| 80 "password_store_sync.cc", | 84 "password_store_sync.cc", |
| 81 "password_store_sync.h", | 85 "password_store_sync.h", |
| 82 "password_syncable_service.cc", | 86 "password_syncable_service.cc", |
| 83 "password_syncable_service.h", | 87 "password_syncable_service.h", |
| 84 "psl_matching_helper.cc", | 88 "psl_matching_helper.cc", |
| 85 "psl_matching_helper.h", | 89 "psl_matching_helper.h", |
| 86 "statistics_table.cc", | 90 "statistics_table.cc", |
| 87 "statistics_table.h", | 91 "statistics_table.h", |
| 88 "test_affiliation_fetcher_factory.h", | 92 "test_affiliation_fetcher_factory.h", |
| 93 "types.h", |
| 89 "webdata/logins_table.cc", | 94 "webdata/logins_table.cc", |
| 90 "webdata/logins_table.h", | 95 "webdata/logins_table.h", |
| 91 "webdata/logins_table_win.cc", | 96 "webdata/logins_table_win.cc", |
| 92 "webdata/password_web_data_service_win.cc", | 97 "webdata/password_web_data_service_win.cc", |
| 93 "webdata/password_web_data_service_win.h", | 98 "webdata/password_web_data_service_win.h", |
| 94 ] | 99 ] |
| 95 | 100 |
| 96 deps = [ | 101 deps = [ |
| 97 ":proto", | 102 ":proto", |
| 98 "//base", | 103 "//base", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 public_deps = [ | 154 public_deps = [ |
| 150 ":browser", | 155 ":browser", |
| 151 ] | 156 ] |
| 152 deps = [ | 157 deps = [ |
| 153 "//base", | 158 "//base", |
| 154 "//components/autofill/core/common", | 159 "//components/autofill/core/common", |
| 155 "//testing/gmock", | 160 "//testing/gmock", |
| 156 "//testing/gtest", | 161 "//testing/gtest", |
| 157 ] | 162 ] |
| 158 } | 163 } |
| OLD | NEW |