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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 "password_manager_metrics_util.cc", | 92 "password_manager_metrics_util.cc", |
93 "password_manager_metrics_util.h", | 93 "password_manager_metrics_util.h", |
94 "password_manager_settings_migration_experiment.cc", | 94 "password_manager_settings_migration_experiment.cc", |
95 "password_manager_settings_migration_experiment.h", | 95 "password_manager_settings_migration_experiment.h", |
96 "password_manager_util.cc", | 96 "password_manager_util.cc", |
97 "password_manager_util.h", | 97 "password_manager_util.h", |
98 "password_reuse_detection_manager.cc", | 98 "password_reuse_detection_manager.cc", |
99 "password_reuse_detection_manager.h", | 99 "password_reuse_detection_manager.h", |
100 "password_reuse_detector.cc", | 100 "password_reuse_detector.cc", |
101 "password_reuse_detector.h", | 101 "password_reuse_detector.h", |
| 102 "password_reuse_detector_consumer.cc", |
| 103 "password_reuse_detector_consumer.h", |
102 "password_store.cc", | 104 "password_store.cc", |
103 "password_store.h", | 105 "password_store.h", |
104 "password_store_change.cc", | 106 "password_store_change.cc", |
105 "password_store_change.h", | 107 "password_store_change.h", |
106 "password_store_consumer.cc", | 108 "password_store_consumer.cc", |
107 "password_store_consumer.h", | 109 "password_store_consumer.h", |
108 "password_store_default.cc", | 110 "password_store_default.cc", |
109 "password_store_default.h", | 111 "password_store_default.h", |
110 "password_store_factory_util.cc", | 112 "password_store_factory_util.cc", |
111 "password_store_factory_util.h", | 113 "password_store_factory_util.h", |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 "//components/sync:test_support_model", | 315 "//components/sync:test_support_model", |
314 "//components/variations", | 316 "//components/variations", |
315 "//net:test_support", | 317 "//net:test_support", |
316 "//sql:test_support", | 318 "//sql:test_support", |
317 "//testing/gmock", | 319 "//testing/gmock", |
318 "//testing/gtest", | 320 "//testing/gtest", |
319 "//ui/base", | 321 "//ui/base", |
320 "//url", | 322 "//url", |
321 ] | 323 ] |
322 } | 324 } |
OLD | NEW |