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 10 matching lines...) Expand all Loading... |
21 "affiliation_fetch_throttler_delegate.h", | 21 "affiliation_fetch_throttler_delegate.h", |
22 "affiliation_fetcher.cc", | 22 "affiliation_fetcher.cc", |
23 "affiliation_fetcher.h", | 23 "affiliation_fetcher.h", |
24 "affiliation_fetcher_delegate.h", | 24 "affiliation_fetcher_delegate.h", |
25 "affiliation_service.cc", | 25 "affiliation_service.cc", |
26 "affiliation_service.h", | 26 "affiliation_service.h", |
27 "affiliation_utils.cc", | 27 "affiliation_utils.cc", |
28 "affiliation_utils.h", | 28 "affiliation_utils.h", |
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_logger.cc", |
| 32 "credential_manager_logger.h", |
31 "credential_manager_password_form_manager.cc", | 33 "credential_manager_password_form_manager.cc", |
32 "credential_manager_password_form_manager.h", | 34 "credential_manager_password_form_manager.h", |
33 "credential_manager_pending_request_task.cc", | 35 "credential_manager_pending_request_task.cc", |
34 "credential_manager_pending_request_task.h", | 36 "credential_manager_pending_request_task.h", |
35 "credential_manager_pending_require_user_mediation_task.cc", | 37 "credential_manager_pending_require_user_mediation_task.cc", |
36 "credential_manager_pending_require_user_mediation_task.h", | 38 "credential_manager_pending_require_user_mediation_task.h", |
37 "credentials_filter.h", | 39 "credentials_filter.h", |
38 "export/csv_writer.cc", | 40 "export/csv_writer.cc", |
39 "export/csv_writer.h", | 41 "export/csv_writer.h", |
40 "export/password_csv_writer.cc", | 42 "export/password_csv_writer.cc", |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 testonly = true | 247 testonly = true |
246 sources = [ | 248 sources = [ |
247 "affiliated_match_helper_unittest.cc", | 249 "affiliated_match_helper_unittest.cc", |
248 "affiliation_backend_unittest.cc", | 250 "affiliation_backend_unittest.cc", |
249 "affiliation_database_unittest.cc", | 251 "affiliation_database_unittest.cc", |
250 "affiliation_fetch_throttler_unittest.cc", | 252 "affiliation_fetch_throttler_unittest.cc", |
251 "affiliation_fetcher_unittest.cc", | 253 "affiliation_fetcher_unittest.cc", |
252 "affiliation_service_unittest.cc", | 254 "affiliation_service_unittest.cc", |
253 "affiliation_utils_unittest.cc", | 255 "affiliation_utils_unittest.cc", |
254 "browser_save_password_progress_logger_unittest.cc", | 256 "browser_save_password_progress_logger_unittest.cc", |
| 257 "credential_manager_logger_unittest.cc", |
255 "export/csv_writer_unittest.cc", | 258 "export/csv_writer_unittest.cc", |
256 "export/password_csv_writer_unittest.cc", | 259 "export/password_csv_writer_unittest.cc", |
257 "export/password_exporter_unittest.cc", | 260 "export/password_exporter_unittest.cc", |
258 "facet_manager_unittest.cc", | 261 "facet_manager_unittest.cc", |
259 "form_fetcher_impl_unittest.cc", | 262 "form_fetcher_impl_unittest.cc", |
260 "form_saver_impl_unittest.cc", | 263 "form_saver_impl_unittest.cc", |
261 "import/csv_reader_unittest.cc", | 264 "import/csv_reader_unittest.cc", |
262 "import/password_csv_reader_unittest.cc", | 265 "import/password_csv_reader_unittest.cc", |
263 "import/password_importer_unittest.cc", | 266 "import/password_importer_unittest.cc", |
264 "log_manager_unittest.cc", | 267 "log_manager_unittest.cc", |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 "//components/sync:test_support_sync_driver", | 303 "//components/sync:test_support_sync_driver", |
301 "//components/variations", | 304 "//components/variations", |
302 "//net:test_support", | 305 "//net:test_support", |
303 "//sql:test_support", | 306 "//sql:test_support", |
304 "//testing/gmock", | 307 "//testing/gmock", |
305 "//testing/gtest", | 308 "//testing/gtest", |
306 "//ui/base", | 309 "//ui/base", |
307 "//url", | 310 "//url", |
308 ] | 311 ] |
309 } | 312 } |
OLD | NEW |