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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "password_store_factory_util.cc", | 101 "password_store_factory_util.cc", |
102 "password_store_factory_util.h", | 102 "password_store_factory_util.h", |
103 "password_store_sync.cc", | 103 "password_store_sync.cc", |
104 "password_store_sync.h", | 104 "password_store_sync.h", |
105 "password_syncable_service.cc", | 105 "password_syncable_service.cc", |
106 "password_syncable_service.h", | 106 "password_syncable_service.h", |
107 "password_ui_utils.cc", | 107 "password_ui_utils.cc", |
108 "password_ui_utils.h", | 108 "password_ui_utils.h", |
109 "psl_matching_helper.cc", | 109 "psl_matching_helper.cc", |
110 "psl_matching_helper.h", | 110 "psl_matching_helper.h", |
| 111 "sql_table_builder.cc", |
| 112 "sql_table_builder.h", |
111 "statistics_table.cc", | 113 "statistics_table.cc", |
112 "statistics_table.h", | 114 "statistics_table.h", |
113 "test_affiliation_fetcher_factory.h", | 115 "test_affiliation_fetcher_factory.h", |
114 "webdata/logins_table.cc", | 116 "webdata/logins_table.cc", |
115 "webdata/logins_table.h", | 117 "webdata/logins_table.h", |
116 "webdata/logins_table_win.cc", | 118 "webdata/logins_table_win.cc", |
117 "webdata/password_web_data_service_win.cc", | 119 "webdata/password_web_data_service_win.cc", |
118 "webdata/password_web_data_service_win.h", | 120 "webdata/password_web_data_service_win.h", |
119 ] | 121 ] |
120 | 122 |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 "password_generation_manager_unittest.cc", | 264 "password_generation_manager_unittest.cc", |
263 "password_manager_settings_migration_experiment_unittest.cc", | 265 "password_manager_settings_migration_experiment_unittest.cc", |
264 "password_manager_unittest.cc", | 266 "password_manager_unittest.cc", |
265 "password_manager_util_unittest.cc", | 267 "password_manager_util_unittest.cc", |
266 "password_store_default_unittest.cc", | 268 "password_store_default_unittest.cc", |
267 "password_store_origin_unittest.h", | 269 "password_store_origin_unittest.h", |
268 "password_store_unittest.cc", | 270 "password_store_unittest.cc", |
269 "password_syncable_service_unittest.cc", | 271 "password_syncable_service_unittest.cc", |
270 "password_ui_utils_unittest.cc", | 272 "password_ui_utils_unittest.cc", |
271 "psl_matching_helper_unittest.cc", | 273 "psl_matching_helper_unittest.cc", |
| 274 "sql_table_builder_unittest.cc", |
272 "statistics_table_unittest.cc", | 275 "statistics_table_unittest.cc", |
273 ] | 276 ] |
274 if (is_mac) { | 277 if (is_mac) { |
275 sources -= [ "password_store_default_unittest.cc" ] | 278 sources -= [ "password_store_default_unittest.cc" ] |
276 } | 279 } |
277 deps = [ | 280 deps = [ |
278 ":test_support", | 281 ":test_support", |
279 ":unit_tests_bundle_data", | 282 ":unit_tests_bundle_data", |
280 "//base/test:test_support", | 283 "//base/test:test_support", |
281 "//components/autofill/core/browser:test_support", | 284 "//components/autofill/core/browser:test_support", |
282 "//components/autofill/core/browser/proto", | 285 "//components/autofill/core/browser/proto", |
283 "//components/autofill/core/common", | 286 "//components/autofill/core/common", |
284 "//components/os_crypt:test_support", | 287 "//components/os_crypt:test_support", |
285 "//components/password_manager/core/browser:proto", | 288 "//components/password_manager/core/browser:proto", |
286 "//components/password_manager/core/common", | 289 "//components/password_manager/core/common", |
287 "//components/prefs:test_support", | 290 "//components/prefs:test_support", |
288 "//components/strings", | 291 "//components/strings", |
289 "//components/sync_driver:test_support", | 292 "//components/sync_driver:test_support", |
290 "//components/variations", | 293 "//components/variations", |
291 "//net:test_support", | 294 "//net:test_support", |
292 "//sql:test_support", | 295 "//sql:test_support", |
293 "//sync:test_support_sync_api", | 296 "//sync:test_support_sync_api", |
294 "//testing/gmock", | 297 "//testing/gmock", |
295 "//testing/gtest", | 298 "//testing/gtest", |
296 "//ui/base", | 299 "//ui/base", |
297 "//url", | 300 "//url", |
298 ] | 301 ] |
299 } | 302 } |
OLD | NEW |