| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "export/password_exporter.h", | 45 "export/password_exporter.h", |
| 46 "facet_manager.cc", | 46 "facet_manager.cc", |
| 47 "facet_manager.h", | 47 "facet_manager.h", |
| 48 "facet_manager_host.h", | 48 "facet_manager_host.h", |
| 49 "form_fetcher.h", | 49 "form_fetcher.h", |
| 50 "form_fetcher_impl.cc", | 50 "form_fetcher_impl.cc", |
| 51 "form_fetcher_impl.h", | 51 "form_fetcher_impl.h", |
| 52 "form_saver.h", | 52 "form_saver.h", |
| 53 "form_saver_impl.cc", | 53 "form_saver_impl.cc", |
| 54 "form_saver_impl.h", | 54 "form_saver_impl.h", |
| 55 "hsts_deleter.cc", |
| 56 "hsts_deleter.h", |
| 55 "http_password_migrator.cc", | 57 "http_password_migrator.cc", |
| 56 "http_password_migrator.h", | 58 "http_password_migrator.h", |
| 57 "import/csv_reader.cc", | 59 "import/csv_reader.cc", |
| 58 "import/csv_reader.h", | 60 "import/csv_reader.h", |
| 59 "import/password_csv_reader.cc", | 61 "import/password_csv_reader.cc", |
| 60 "import/password_csv_reader.h", | 62 "import/password_csv_reader.h", |
| 61 "import/password_importer.cc", | 63 "import/password_importer.cc", |
| 62 "import/password_importer.h", | 64 "import/password_importer.h", |
| 63 "keychain_migration_status_mac.h", | 65 "keychain_migration_status_mac.h", |
| 64 "log_manager.cc", | 66 "log_manager.cc", |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 "affiliation_utils_unittest.cc", | 268 "affiliation_utils_unittest.cc", |
| 267 "browser_save_password_progress_logger_unittest.cc", | 269 "browser_save_password_progress_logger_unittest.cc", |
| 268 "credential_manager_logger_unittest.cc", | 270 "credential_manager_logger_unittest.cc", |
| 269 "credential_manager_password_form_manager_unittest.cc", | 271 "credential_manager_password_form_manager_unittest.cc", |
| 270 "export/csv_writer_unittest.cc", | 272 "export/csv_writer_unittest.cc", |
| 271 "export/password_csv_writer_unittest.cc", | 273 "export/password_csv_writer_unittest.cc", |
| 272 "export/password_exporter_unittest.cc", | 274 "export/password_exporter_unittest.cc", |
| 273 "facet_manager_unittest.cc", | 275 "facet_manager_unittest.cc", |
| 274 "form_fetcher_impl_unittest.cc", | 276 "form_fetcher_impl_unittest.cc", |
| 275 "form_saver_impl_unittest.cc", | 277 "form_saver_impl_unittest.cc", |
| 278 "hsts_deleter_unittest.cc", |
| 276 "http_password_migrator_unittest.cc", | 279 "http_password_migrator_unittest.cc", |
| 277 "import/csv_reader_unittest.cc", | 280 "import/csv_reader_unittest.cc", |
| 278 "import/password_csv_reader_unittest.cc", | 281 "import/password_csv_reader_unittest.cc", |
| 279 "import/password_importer_unittest.cc", | 282 "import/password_importer_unittest.cc", |
| 280 "log_manager_unittest.cc", | 283 "log_manager_unittest.cc", |
| 281 "log_router_unittest.cc", | 284 "log_router_unittest.cc", |
| 282 "login_database_unittest.cc", | 285 "login_database_unittest.cc", |
| 283 "login_model_unittest.cc", | 286 "login_model_unittest.cc", |
| 284 "password_autofill_manager_unittest.cc", | 287 "password_autofill_manager_unittest.cc", |
| 285 "password_bubble_experiment_unittest.cc", | 288 "password_bubble_experiment_unittest.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 319 "//components/sync:test_support_model", | 322 "//components/sync:test_support_model", |
| 320 "//components/variations", | 323 "//components/variations", |
| 321 "//net:test_support", | 324 "//net:test_support", |
| 322 "//sql:test_support", | 325 "//sql:test_support", |
| 323 "//testing/gmock", | 326 "//testing/gmock", |
| 324 "//testing/gtest", | 327 "//testing/gtest", |
| 325 "//ui/base", | 328 "//ui/base", |
| 326 "//url", | 329 "//url", |
| 327 ] | 330 ] |
| 328 } | 331 } |
| OLD | NEW |