| 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", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 "data_type_manager.h", | 25 "data_type_manager.h", |
| 26 "data_type_manager_impl.cc", | 26 "data_type_manager_impl.cc", |
| 27 "data_type_manager_impl.h", | 27 "data_type_manager_impl.h", |
| 28 "data_type_manager_observer.h", | 28 "data_type_manager_observer.h", |
| 29 "data_type_status_table.cc", | 29 "data_type_status_table.cc", |
| 30 "data_type_status_table.h", | 30 "data_type_status_table.h", |
| 31 "device_info.cc", | 31 "device_info.cc", |
| 32 "device_info.h", | 32 "device_info.h", |
| 33 "device_info_data_type_controller.cc", | 33 "device_info_data_type_controller.cc", |
| 34 "device_info_data_type_controller.h", | 34 "device_info_data_type_controller.h", |
| 35 "device_info_service.cc", |
| 36 "device_info_service.h", |
| 35 "device_info_sync_service.cc", | 37 "device_info_sync_service.cc", |
| 36 "device_info_sync_service.h", | 38 "device_info_sync_service.h", |
| 37 "device_info_tracker.h", | 39 "device_info_tracker.h", |
| 38 "directory_data_type_controller.cc", | 40 "directory_data_type_controller.cc", |
| 39 "directory_data_type_controller.h", | 41 "directory_data_type_controller.h", |
| 40 "favicon_cache.cc", | 42 "favicon_cache.cc", |
| 41 "favicon_cache.h", | 43 "favicon_cache.h", |
| 42 "frontend_data_type_controller.cc", | 44 "frontend_data_type_controller.cc", |
| 43 "frontend_data_type_controller.h", | 45 "frontend_data_type_controller.h", |
| 44 "generic_change_processor.cc", | 46 "generic_change_processor.cc", |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 ] | 197 ] |
| 196 } | 198 } |
| 197 | 199 |
| 198 source_set("unit_tests") { | 200 source_set("unit_tests") { |
| 199 testonly = true | 201 testonly = true |
| 200 sources = [ | 202 sources = [ |
| 201 "about_sync_util_unittest.cc", | 203 "about_sync_util_unittest.cc", |
| 202 "backup_rollback_controller_unittest.cc", | 204 "backup_rollback_controller_unittest.cc", |
| 203 "data_type_manager_impl_unittest.cc", | 205 "data_type_manager_impl_unittest.cc", |
| 204 "device_info_data_type_controller_unittest.cc", | 206 "device_info_data_type_controller_unittest.cc", |
| 207 "device_info_service_unittest.cc", |
| 205 "device_info_sync_service_unittest.cc", | 208 "device_info_sync_service_unittest.cc", |
| 206 "favicon_cache_unittest.cc", | 209 "favicon_cache_unittest.cc", |
| 207 "generic_change_processor_unittest.cc", | 210 "generic_change_processor_unittest.cc", |
| 208 "model_association_manager_unittest.cc", | 211 "model_association_manager_unittest.cc", |
| 209 "non_blocking_data_type_controller_unittest.cc", | 212 "non_blocking_data_type_controller_unittest.cc", |
| 210 "non_ui_data_type_controller_unittest.cc", | 213 "non_ui_data_type_controller_unittest.cc", |
| 211 "shared_change_processor_unittest.cc", | 214 "shared_change_processor_unittest.cc", |
| 212 "sync_prefs_unittest.cc", | 215 "sync_prefs_unittest.cc", |
| 213 "sync_stopped_reporter_unittest.cc", | 216 "sync_stopped_reporter_unittest.cc", |
| 214 "sync_util_unittest.cc", | 217 "sync_util_unittest.cc", |
| 215 "system_encryptor_unittest.cc", | 218 "system_encryptor_unittest.cc", |
| 216 "tab_node_pool_unittest.cc", | 219 "tab_node_pool_unittest.cc", |
| 217 "ui_data_type_controller_unittest.cc", | 220 "ui_data_type_controller_unittest.cc", |
| 218 ] | 221 ] |
| 219 deps = [ | 222 deps = [ |
| 220 ":test_support", | 223 ":test_support", |
| 221 "//testing/gmock", | 224 "//testing/gmock", |
| 222 "//testing/gtest", | 225 "//testing/gtest", |
| 223 ] | 226 ] |
| 224 | 227 |
| 225 if (enable_configuration_policy) { | 228 if (enable_configuration_policy) { |
| 226 sources += [ "sync_policy_handler_unittest.cc" ] | 229 sources += [ "sync_policy_handler_unittest.cc" ] |
| 227 } | 230 } |
| 228 } | 231 } |
| OLD | NEW |