| 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_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 "sql_table_builder.cc", | 121 "sql_table_builder.cc", |
| 122 "sql_table_builder.h", | 122 "sql_table_builder.h", |
| 123 "statistics_table.cc", | 123 "statistics_table.cc", |
| 124 "statistics_table.h", | 124 "statistics_table.h", |
| 125 "suppressed_https_form_fetcher.cc", | 125 "suppressed_form_fetcher.cc", |
| 126 "suppressed_https_form_fetcher.h", | 126 "suppressed_form_fetcher.h", |
| 127 "test_affiliation_fetcher_factory.h", | 127 "test_affiliation_fetcher_factory.h", |
| 128 "webdata/logins_table.cc", | 128 "webdata/logins_table.cc", |
| 129 "webdata/logins_table.h", | 129 "webdata/logins_table.h", |
| 130 "webdata/logins_table_win.cc", | 130 "webdata/logins_table_win.cc", |
| 131 "webdata/password_web_data_service_win.cc", | 131 "webdata/password_web_data_service_win.cc", |
| 132 "webdata/password_web_data_service_win.h", | 132 "webdata/password_web_data_service_win.h", |
| 133 ] | 133 ] |
| 134 | 134 |
| 135 if (password_reuse_detection_support) { | 135 if (password_reuse_detection_support) { |
| 136 sources += [ | 136 sources += [ |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 "password_manager_unittest.cc", | 315 "password_manager_unittest.cc", |
| 316 "password_manager_util_unittest.cc", | 316 "password_manager_util_unittest.cc", |
| 317 "password_store_default_unittest.cc", | 317 "password_store_default_unittest.cc", |
| 318 "password_store_origin_unittest.h", | 318 "password_store_origin_unittest.h", |
| 319 "password_store_unittest.cc", | 319 "password_store_unittest.cc", |
| 320 "password_syncable_service_unittest.cc", | 320 "password_syncable_service_unittest.cc", |
| 321 "password_ui_utils_unittest.cc", | 321 "password_ui_utils_unittest.cc", |
| 322 "psl_matching_helper_unittest.cc", | 322 "psl_matching_helper_unittest.cc", |
| 323 "sql_table_builder_unittest.cc", | 323 "sql_table_builder_unittest.cc", |
| 324 "statistics_table_unittest.cc", | 324 "statistics_table_unittest.cc", |
| 325 "suppressed_https_form_fetcher_unittest.cc", | 325 "suppressed_form_fetcher_unittest.cc", |
| 326 ] | 326 ] |
| 327 if (is_mac) { | 327 if (is_mac) { |
| 328 sources -= [ "password_store_default_unittest.cc" ] | 328 sources -= [ "password_store_default_unittest.cc" ] |
| 329 } | 329 } |
| 330 if (is_ios) { | 330 if (is_ios) { |
| 331 sources += [ "login_database_ios_unittest.cc" ] | 331 sources += [ "login_database_ios_unittest.cc" ] |
| 332 } else { | 332 } else { |
| 333 sources += [ | 333 sources += [ |
| 334 "hsts_query_unittest.cc", | 334 "hsts_query_unittest.cc", |
| 335 "http_data_cleaner_unittest.cc", | 335 "http_data_cleaner_unittest.cc", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 358 "//components/sync:test_support_model", | 358 "//components/sync:test_support_model", |
| 359 "//components/variations", | 359 "//components/variations", |
| 360 "//net:test_support", | 360 "//net:test_support", |
| 361 "//sql:test_support", | 361 "//sql:test_support", |
| 362 "//testing/gmock", | 362 "//testing/gmock", |
| 363 "//testing/gtest", | 363 "//testing/gtest", |
| 364 "//ui/base", | 364 "//ui/base", |
| 365 "//url", | 365 "//url", |
| 366 ] | 366 ] |
| 367 } | 367 } |
| OLD | NEW |