| 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 "password_store_default.cc", | 84 "password_store_default.cc", |
| 85 "password_store_default.h", | 85 "password_store_default.h", |
| 86 "password_store_factory_util.cc", | 86 "password_store_factory_util.cc", |
| 87 "password_store_factory_util.h", | 87 "password_store_factory_util.h", |
| 88 "password_store_service.cc", | 88 "password_store_service.cc", |
| 89 "password_store_service.h", | 89 "password_store_service.h", |
| 90 "password_store_sync.cc", | 90 "password_store_sync.cc", |
| 91 "password_store_sync.h", | 91 "password_store_sync.h", |
| 92 "password_syncable_service.cc", | 92 "password_syncable_service.cc", |
| 93 "password_syncable_service.h", | 93 "password_syncable_service.h", |
| 94 "password_ui_utils.cc", |
| 95 "password_ui_utils.h", |
| 94 "psl_matching_helper.cc", | 96 "psl_matching_helper.cc", |
| 95 "psl_matching_helper.h", | 97 "psl_matching_helper.h", |
| 96 "statistics_table.cc", | 98 "statistics_table.cc", |
| 97 "statistics_table.h", | 99 "statistics_table.h", |
| 98 "test_affiliation_fetcher_factory.h", | 100 "test_affiliation_fetcher_factory.h", |
| 99 "webdata/logins_table.cc", | 101 "webdata/logins_table.cc", |
| 100 "webdata/logins_table.h", | 102 "webdata/logins_table.h", |
| 101 "webdata/logins_table_win.cc", | 103 "webdata/logins_table_win.cc", |
| 102 "webdata/password_web_data_service_win.cc", | 104 "webdata/password_web_data_service_win.cc", |
| 103 "webdata/password_web_data_service_win.h", | 105 "webdata/password_web_data_service_win.h", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "password_bubble_experiment_unittest.cc", | 196 "password_bubble_experiment_unittest.cc", |
| 195 "password_form_manager_unittest.cc", | 197 "password_form_manager_unittest.cc", |
| 196 "password_generation_manager_unittest.cc", | 198 "password_generation_manager_unittest.cc", |
| 197 "password_manager_metrics_util_unittest.cc", | 199 "password_manager_metrics_util_unittest.cc", |
| 198 "password_manager_settings_migration_experiment_unittest.cc", | 200 "password_manager_settings_migration_experiment_unittest.cc", |
| 199 "password_manager_unittest.cc", | 201 "password_manager_unittest.cc", |
| 200 "password_manager_util_unittest.cc", | 202 "password_manager_util_unittest.cc", |
| 201 "password_store_default_unittest.cc", | 203 "password_store_default_unittest.cc", |
| 202 "password_store_unittest.cc", | 204 "password_store_unittest.cc", |
| 203 "password_syncable_service_unittest.cc", | 205 "password_syncable_service_unittest.cc", |
| 206 "password_ui_utils_unittest.cc", |
| 204 "psl_matching_helper_unittest.cc", | 207 "psl_matching_helper_unittest.cc", |
| 205 "statistics_table_unittest.cc", | 208 "statistics_table_unittest.cc", |
| 206 ] | 209 ] |
| 207 deps = [ | 210 deps = [ |
| 208 ":test_support", | 211 ":test_support", |
| 209 "//testing/gmock", | 212 "//testing/gmock", |
| 210 "//testing/gtest", | 213 "//testing/gtest", |
| 211 ] | 214 ] |
| 212 } | 215 } |
| OLD | NEW |