| 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 source_set("sync_driver") { | 7 source_set("sync_driver") { |
| 8 sources = [ | 8 sources = [ |
| 9 "about_sync_util.cc", | 9 "about_sync_util.cc", |
| 10 "about_sync_util.h", | 10 "about_sync_util.h", |
| 11 "backend_data_type_configurer.cc", | 11 "backend_data_type_configurer.cc", |
| 12 "backend_data_type_configurer.h", | 12 "backend_data_type_configurer.h", |
| 13 "backend_migrator.cc", | 13 "backend_migrator.cc", |
| 14 "backend_migrator.h", | 14 "backend_migrator.h", |
| 15 "backup_rollback_controller.cc", |
| 16 "backup_rollback_controller.h", |
| 15 "change_processor.cc", | 17 "change_processor.cc", |
| 16 "change_processor.h", | 18 "change_processor.h", |
| 17 "data_type_controller.cc", | 19 "data_type_controller.cc", |
| 18 "data_type_controller.h", | 20 "data_type_controller.h", |
| 19 "data_type_encryption_handler.cc", | 21 "data_type_encryption_handler.cc", |
| 20 "data_type_encryption_handler.h", | 22 "data_type_encryption_handler.h", |
| 21 "data_type_error_handler.h", | 23 "data_type_error_handler.h", |
| 22 "data_type_manager.cc", | 24 "data_type_manager.cc", |
| 23 "data_type_manager.h", | 25 "data_type_manager.h", |
| 24 "data_type_manager_impl.cc", | 26 "data_type_manager_impl.cc", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "//sync:test_support_sync_internal_api", | 180 "//sync:test_support_sync_internal_api", |
| 179 "//testing/gmock", | 181 "//testing/gmock", |
| 180 "//testing/gtest", | 182 "//testing/gtest", |
| 181 ] | 183 ] |
| 182 } | 184 } |
| 183 | 185 |
| 184 source_set("unit_tests") { | 186 source_set("unit_tests") { |
| 185 testonly = true | 187 testonly = true |
| 186 sources = [ | 188 sources = [ |
| 187 "about_sync_util_unittest.cc", | 189 "about_sync_util_unittest.cc", |
| 190 "backup_rollback_controller_unittest.cc", |
| 188 "data_type_manager_impl_unittest.cc", | 191 "data_type_manager_impl_unittest.cc", |
| 189 "device_info_data_type_controller_unittest.cc", | 192 "device_info_data_type_controller_unittest.cc", |
| 190 "device_info_sync_service_unittest.cc", | 193 "device_info_sync_service_unittest.cc", |
| 191 "favicon_cache_unittest.cc", | 194 "favicon_cache_unittest.cc", |
| 192 "generic_change_processor_unittest.cc", | 195 "generic_change_processor_unittest.cc", |
| 193 "model_association_manager_unittest.cc", | 196 "model_association_manager_unittest.cc", |
| 194 "non_blocking_data_type_controller_unittest.cc", | 197 "non_blocking_data_type_controller_unittest.cc", |
| 195 "non_ui_data_type_controller_unittest.cc", | 198 "non_ui_data_type_controller_unittest.cc", |
| 196 "shared_change_processor_unittest.cc", | 199 "shared_change_processor_unittest.cc", |
| 197 "sync_policy_handler_unittest.cc", | 200 "sync_policy_handler_unittest.cc", |
| 198 "sync_prefs_unittest.cc", | 201 "sync_prefs_unittest.cc", |
| 199 "sync_stopped_reporter_unittest.cc", | 202 "sync_stopped_reporter_unittest.cc", |
| 200 "sync_util_unittest.cc", | 203 "sync_util_unittest.cc", |
| 201 "system_encryptor_unittest.cc", | 204 "system_encryptor_unittest.cc", |
| 202 "tab_node_pool_unittest.cc", | 205 "tab_node_pool_unittest.cc", |
| 203 "ui_data_type_controller_unittest.cc", | 206 "ui_data_type_controller_unittest.cc", |
| 204 ] | 207 ] |
| 205 deps = [ | 208 deps = [ |
| 206 ":test_support", | 209 ":test_support", |
| 207 "//testing/gmock", | 210 "//testing/gmock", |
| 208 "//testing/gtest", | 211 "//testing/gtest", |
| 209 ] | 212 ] |
| 210 } | 213 } |
| OLD | NEW |