| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "password_store_factory_util.cc", | 111 "password_store_factory_util.cc", |
| 112 "password_store_factory_util.h", | 112 "password_store_factory_util.h", |
| 113 "password_store_sync.cc", | 113 "password_store_sync.cc", |
| 114 "password_store_sync.h", | 114 "password_store_sync.h", |
| 115 "password_syncable_service.cc", | 115 "password_syncable_service.cc", |
| 116 "password_syncable_service.h", | 116 "password_syncable_service.h", |
| 117 "password_ui_utils.cc", | 117 "password_ui_utils.cc", |
| 118 "password_ui_utils.h", | 118 "password_ui_utils.h", |
| 119 "psl_matching_helper.cc", | 119 "psl_matching_helper.cc", |
| 120 "psl_matching_helper.h", | 120 "psl_matching_helper.h", |
| 121 "site_affiliation/asset_link_retriever.cc", |
| 122 "site_affiliation/asset_link_retriever.h", |
| 121 "sql_table_builder.cc", | 123 "sql_table_builder.cc", |
| 122 "sql_table_builder.h", | 124 "sql_table_builder.h", |
| 123 "statistics_table.cc", | 125 "statistics_table.cc", |
| 124 "statistics_table.h", | 126 "statistics_table.h", |
| 125 "suppressed_form_fetcher.cc", | 127 "suppressed_form_fetcher.cc", |
| 126 "suppressed_form_fetcher.h", | 128 "suppressed_form_fetcher.h", |
| 127 "test_affiliation_fetcher_factory.h", | 129 "test_affiliation_fetcher_factory.h", |
| 128 "webdata/logins_table.cc", | 130 "webdata/logins_table.cc", |
| 129 "webdata/logins_table.h", | 131 "webdata/logins_table.h", |
| 130 "webdata/logins_table_win.cc", | 132 "webdata/logins_table_win.cc", |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 "password_generation_manager_unittest.cc", | 311 "password_generation_manager_unittest.cc", |
| 310 "password_manager_settings_migration_experiment_unittest.cc", | 312 "password_manager_settings_migration_experiment_unittest.cc", |
| 311 "password_manager_unittest.cc", | 313 "password_manager_unittest.cc", |
| 312 "password_manager_util_unittest.cc", | 314 "password_manager_util_unittest.cc", |
| 313 "password_store_default_unittest.cc", | 315 "password_store_default_unittest.cc", |
| 314 "password_store_origin_unittest.h", | 316 "password_store_origin_unittest.h", |
| 315 "password_store_unittest.cc", | 317 "password_store_unittest.cc", |
| 316 "password_syncable_service_unittest.cc", | 318 "password_syncable_service_unittest.cc", |
| 317 "password_ui_utils_unittest.cc", | 319 "password_ui_utils_unittest.cc", |
| 318 "psl_matching_helper_unittest.cc", | 320 "psl_matching_helper_unittest.cc", |
| 321 "site_affiliation/asset_link_retriever_unittest.cc", |
| 319 "sql_table_builder_unittest.cc", | 322 "sql_table_builder_unittest.cc", |
| 320 "statistics_table_unittest.cc", | 323 "statistics_table_unittest.cc", |
| 321 "suppressed_form_fetcher_unittest.cc", | 324 "suppressed_form_fetcher_unittest.cc", |
| 322 ] | 325 ] |
| 323 if (is_mac) { | 326 if (is_mac) { |
| 324 sources -= [ "password_store_default_unittest.cc" ] | 327 sources -= [ "password_store_default_unittest.cc" ] |
| 325 } | 328 } |
| 326 if (is_ios) { | 329 if (is_ios) { |
| 327 sources += [ "login_database_ios_unittest.cc" ] | 330 sources += [ "login_database_ios_unittest.cc" ] |
| 328 } else { | 331 } else { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 354 "//components/sync:test_support_model", | 357 "//components/sync:test_support_model", |
| 355 "//components/variations", | 358 "//components/variations", |
| 356 "//net:test_support", | 359 "//net:test_support", |
| 357 "//sql:test_support", | 360 "//sql:test_support", |
| 358 "//testing/gmock", | 361 "//testing/gmock", |
| 359 "//testing/gtest", | 362 "//testing/gtest", |
| 360 "//ui/base", | 363 "//ui/base", |
| 361 "//url", | 364 "//url", |
| 362 ] | 365 ] |
| 363 } | 366 } |
| OLD | NEW |