| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "password_store_factory_util.cc", | 115 "password_store_factory_util.cc", |
| 116 "password_store_factory_util.h", | 116 "password_store_factory_util.h", |
| 117 "password_store_sync.cc", | 117 "password_store_sync.cc", |
| 118 "password_store_sync.h", | 118 "password_store_sync.h", |
| 119 "password_syncable_service.cc", | 119 "password_syncable_service.cc", |
| 120 "password_syncable_service.h", | 120 "password_syncable_service.h", |
| 121 "password_ui_utils.cc", | 121 "password_ui_utils.cc", |
| 122 "password_ui_utils.h", | 122 "password_ui_utils.h", |
| 123 "psl_matching_helper.cc", | 123 "psl_matching_helper.cc", |
| 124 "psl_matching_helper.h", | 124 "psl_matching_helper.h", |
| 125 "site_affiliation/asset_link_data.cc", |
| 126 "site_affiliation/asset_link_data.h", |
| 125 "site_affiliation/asset_link_retriever.cc", | 127 "site_affiliation/asset_link_retriever.cc", |
| 126 "site_affiliation/asset_link_retriever.h", | 128 "site_affiliation/asset_link_retriever.h", |
| 127 "sql_table_builder.cc", | 129 "sql_table_builder.cc", |
| 128 "sql_table_builder.h", | 130 "sql_table_builder.h", |
| 129 "statistics_table.cc", | 131 "statistics_table.cc", |
| 130 "statistics_table.h", | 132 "statistics_table.h", |
| 131 "suppressed_form_fetcher.cc", | 133 "suppressed_form_fetcher.cc", |
| 132 "suppressed_form_fetcher.h", | 134 "suppressed_form_fetcher.h", |
| 133 "webdata/logins_table.cc", | 135 "webdata/logins_table.cc", |
| 134 "webdata/logins_table.h", | 136 "webdata/logins_table.h", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 "password_generation_manager_unittest.cc", | 328 "password_generation_manager_unittest.cc", |
| 327 "password_manager_metrics_recorder_unittest.cc", | 329 "password_manager_metrics_recorder_unittest.cc", |
| 328 "password_manager_unittest.cc", | 330 "password_manager_unittest.cc", |
| 329 "password_manager_util_unittest.cc", | 331 "password_manager_util_unittest.cc", |
| 330 "password_store_default_unittest.cc", | 332 "password_store_default_unittest.cc", |
| 331 "password_store_origin_unittest.h", | 333 "password_store_origin_unittest.h", |
| 332 "password_store_unittest.cc", | 334 "password_store_unittest.cc", |
| 333 "password_syncable_service_unittest.cc", | 335 "password_syncable_service_unittest.cc", |
| 334 "password_ui_utils_unittest.cc", | 336 "password_ui_utils_unittest.cc", |
| 335 "psl_matching_helper_unittest.cc", | 337 "psl_matching_helper_unittest.cc", |
| 338 "site_affiliation/asset_link_data_unittest.cc", |
| 336 "site_affiliation/asset_link_retriever_unittest.cc", | 339 "site_affiliation/asset_link_retriever_unittest.cc", |
| 337 "sql_table_builder_unittest.cc", | 340 "sql_table_builder_unittest.cc", |
| 338 "statistics_table_unittest.cc", | 341 "statistics_table_unittest.cc", |
| 339 "suppressed_form_fetcher_unittest.cc", | 342 "suppressed_form_fetcher_unittest.cc", |
| 340 ] | 343 ] |
| 341 if (is_mac) { | 344 if (is_mac) { |
| 342 sources -= [ "password_store_default_unittest.cc" ] | 345 sources -= [ "password_store_default_unittest.cc" ] |
| 343 } | 346 } |
| 344 if (is_ios) { | 347 if (is_ios) { |
| 345 sources += [ "login_database_ios_unittest.cc" ] | 348 sources += [ "login_database_ios_unittest.cc" ] |
| (...skipping 28 matching lines...) Expand all Loading... |
| 374 "//components/ukm:test_support", | 377 "//components/ukm:test_support", |
| 375 "//components/variations", | 378 "//components/variations", |
| 376 "//net:test_support", | 379 "//net:test_support", |
| 377 "//sql:test_support", | 380 "//sql:test_support", |
| 378 "//testing/gmock", | 381 "//testing/gmock", |
| 379 "//testing/gtest", | 382 "//testing/gtest", |
| 380 "//ui/base", | 383 "//ui/base", |
| 381 "//url", | 384 "//url", |
| 382 ] | 385 ] |
| 383 } | 386 } |
| OLD | NEW |