Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 source_set("browser") { | 5 source_set("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "password_data_type_controller.cc", | 7 "password_data_type_controller.cc", |
| 8 "password_data_type_controller.h", | 8 "password_data_type_controller.h", |
| 9 "password_manager_setting_migrator_service.cc", | |
| 10 "password_manager_setting_migrator_service.h", | |
| 9 "password_model_worker.cc", | 11 "password_model_worker.cc", |
| 10 "password_model_worker.h", | 12 "password_model_worker.h", |
| 11 "password_sync_util.cc", | 13 "password_sync_util.cc", |
| 12 "password_sync_util.h", | 14 "password_sync_util.h", |
| 13 "sync_store_result_filter.cc", | 15 "sync_store_result_filter.cc", |
| 14 "sync_store_result_filter.h", | 16 "sync_store_result_filter.h", |
| 15 ] | 17 ] |
| 16 | 18 |
| 17 deps = [ | 19 deps = [ |
| 18 "//base", | 20 "//base", |
| 19 "//google_apis", | 21 "//google_apis", |
| 20 "//components/autofill/core/common", | 22 "//components/autofill/core/common", |
| 21 "//components/password_manager/core/browser", | 23 "//components/password_manager/core/browser", |
| 22 "//components/signin/core/browser", | 24 "//components/signin/core/browser", |
| 23 "//components/sync_driver", | 25 "//components/sync_driver", |
| 24 "//net", | 26 "//net", |
| 25 "//url", | 27 "//url", |
| 26 ] | 28 ] |
| 27 } | 29 } |
| 28 | 30 |
| 29 source_set("unit_tests") { | 31 source_set("unit_tests") { |
| 30 testonly = true | 32 testonly = true |
| 31 sources = [ | 33 sources = [ |
| 34 "password_manager_setting_migrator_service_unittest.cc", | |
|
sdefresne
2016/04/19 13:32:50
Hi, you forgot to add this test to components/comp
| |
| 32 "password_sync_util_unittest.cc", | 35 "password_sync_util_unittest.cc", |
| 33 "sync_store_result_filter_unittest.cc", | 36 "sync_store_result_filter_unittest.cc", |
| 34 "sync_username_test_base.cc", | 37 "sync_username_test_base.cc", |
| 35 "sync_username_test_base.h", | 38 "sync_username_test_base.h", |
| 36 ] | 39 ] |
| 37 deps = [ | 40 deps = [ |
| 38 ":browser", | 41 ":browser", |
| 39 "//components/pref_registry", | 42 "//components/pref_registry", |
| 40 "//components/signin/core/common", | 43 "//components/signin/core/common", |
| 44 "//components/syncable_prefs", | |
| 45 "//components/syncable_prefs:test_support", | |
| 41 "//sync", | 46 "//sync", |
| 42 "//testing/gmock", | 47 "//testing/gmock", |
| 43 "//testing/gtest", | 48 "//testing/gtest", |
| 44 ] | 49 ] |
| 45 } | 50 } |
| OLD | NEW |