| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "password_store.h", | 80 "password_store.h", |
| 81 "password_store_change.h", | 81 "password_store_change.h", |
| 82 "password_store_consumer.cc", | 82 "password_store_consumer.cc", |
| 83 "password_store_consumer.h", | 83 "password_store_consumer.h", |
| 84 "password_store_default.cc", | 84 "password_store_default.cc", |
| 85 "password_store_default.h", | 85 "password_store_default.h", |
| 86 "password_store_sync.cc", | 86 "password_store_sync.cc", |
| 87 "password_store_sync.h", | 87 "password_store_sync.h", |
| 88 "password_syncable_service.cc", | 88 "password_syncable_service.cc", |
| 89 "password_syncable_service.h", | 89 "password_syncable_service.h", |
| 90 "password_ui_utils.cc", |
| 91 "password_ui_utils.h", |
| 90 "psl_matching_helper.cc", | 92 "psl_matching_helper.cc", |
| 91 "psl_matching_helper.h", | 93 "psl_matching_helper.h", |
| 92 "statistics_table.cc", | 94 "statistics_table.cc", |
| 93 "statistics_table.h", | 95 "statistics_table.h", |
| 94 "test_affiliation_fetcher_factory.h", | 96 "test_affiliation_fetcher_factory.h", |
| 95 "webdata/logins_table.cc", | 97 "webdata/logins_table.cc", |
| 96 "webdata/logins_table.h", | 98 "webdata/logins_table.h", |
| 97 "webdata/logins_table_win.cc", | 99 "webdata/logins_table_win.cc", |
| 98 "webdata/password_web_data_service_win.cc", | 100 "webdata/password_web_data_service_win.cc", |
| 99 "webdata/password_web_data_service_win.h", | 101 "webdata/password_web_data_service_win.h", |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 "password_bubble_experiment_unittest.cc", | 191 "password_bubble_experiment_unittest.cc", |
| 190 "password_form_manager_unittest.cc", | 192 "password_form_manager_unittest.cc", |
| 191 "password_generation_manager_unittest.cc", | 193 "password_generation_manager_unittest.cc", |
| 192 "password_manager_metrics_util_unittest.cc", | 194 "password_manager_metrics_util_unittest.cc", |
| 193 "password_manager_settings_migration_experiment_unittest.cc", | 195 "password_manager_settings_migration_experiment_unittest.cc", |
| 194 "password_manager_unittest.cc", | 196 "password_manager_unittest.cc", |
| 195 "password_manager_util_unittest.cc", | 197 "password_manager_util_unittest.cc", |
| 196 "password_store_default_unittest.cc", | 198 "password_store_default_unittest.cc", |
| 197 "password_store_unittest.cc", | 199 "password_store_unittest.cc", |
| 198 "password_syncable_service_unittest.cc", | 200 "password_syncable_service_unittest.cc", |
| 201 "password_ui_utils_unittest.cc", |
| 199 "psl_matching_helper_unittest.cc", | 202 "psl_matching_helper_unittest.cc", |
| 200 "statistics_table_unittest.cc", | 203 "statistics_table_unittest.cc", |
| 201 ] | 204 ] |
| 202 deps = [ | 205 deps = [ |
| 203 ":test_support", | 206 ":test_support", |
| 204 "//testing/gmock", | 207 "//testing/gmock", |
| 205 "//testing/gtest", | 208 "//testing/gtest", |
| 206 ] | 209 ] |
| 207 } | 210 } |
| OLD | NEW |