| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 source_set("sync_driver") { | 8 source_set("sync_driver") { |
| 9 sources = [ | 9 sources = [ |
| 10 "about_sync_util.cc", | 10 "about_sync_util.cc", |
| 11 "about_sync_util.h", | 11 "about_sync_util.h", |
| 12 "backend_data_type_configurer.cc", | 12 "backend_data_type_configurer.cc", |
| 13 "backend_data_type_configurer.h", | 13 "backend_data_type_configurer.h", |
| 14 "backend_migrator.cc", | 14 "backend_migrator.cc", |
| 15 "backend_migrator.h", | 15 "backend_migrator.h", |
| 16 "change_processor.cc", | 16 "change_processor.cc", |
| 17 "change_processor.h", | 17 "change_processor.h", |
| 18 "data_type_controller.cc", | 18 "data_type_controller.cc", |
| 19 "data_type_controller.h", | 19 "data_type_controller.h", |
| 20 "data_type_encryption_handler.cc", | 20 "data_type_encryption_handler.cc", |
| 21 "data_type_encryption_handler.h", | 21 "data_type_encryption_handler.h", |
| 22 "data_type_error_handler.h", | |
| 23 "data_type_manager.cc", | 22 "data_type_manager.cc", |
| 24 "data_type_manager.h", | 23 "data_type_manager.h", |
| 25 "data_type_manager_impl.cc", | 24 "data_type_manager_impl.cc", |
| 26 "data_type_manager_impl.h", | 25 "data_type_manager_impl.h", |
| 27 "data_type_manager_observer.h", | 26 "data_type_manager_observer.h", |
| 28 "data_type_status_table.cc", | 27 "data_type_status_table.cc", |
| 29 "data_type_status_table.h", | 28 "data_type_status_table.h", |
| 30 "device_count_metrics_provider.cc", | 29 "device_count_metrics_provider.cc", |
| 31 "device_count_metrics_provider.h", | 30 "device_count_metrics_provider.h", |
| 32 "device_info.cc", | 31 "device_info.cc", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 } | 158 } |
| 160 } | 159 } |
| 161 | 160 |
| 162 source_set("test_support") { | 161 source_set("test_support") { |
| 163 testonly = true | 162 testonly = true |
| 164 sources = [ | 163 sources = [ |
| 165 "change_processor_mock.cc", | 164 "change_processor_mock.cc", |
| 166 "change_processor_mock.h", | 165 "change_processor_mock.h", |
| 167 "data_type_controller_mock.cc", | 166 "data_type_controller_mock.cc", |
| 168 "data_type_controller_mock.h", | 167 "data_type_controller_mock.h", |
| 169 "data_type_error_handler_mock.cc", | |
| 170 "data_type_error_handler_mock.h", | |
| 171 "data_type_manager_mock.cc", | 168 "data_type_manager_mock.cc", |
| 172 "data_type_manager_mock.h", | 169 "data_type_manager_mock.h", |
| 173 "fake_data_type_controller.cc", | 170 "fake_data_type_controller.cc", |
| 174 "fake_data_type_controller.h", | 171 "fake_data_type_controller.h", |
| 175 "fake_generic_change_processor.cc", | 172 "fake_generic_change_processor.cc", |
| 176 "fake_generic_change_processor.h", | 173 "fake_generic_change_processor.h", |
| 177 "fake_sync_client.cc", | 174 "fake_sync_client.cc", |
| 178 "fake_sync_client.h", | 175 "fake_sync_client.h", |
| 179 "fake_sync_service.cc", | 176 "fake_sync_service.cc", |
| 180 "fake_sync_service.h", | 177 "fake_sync_service.h", |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 ] | 256 ] |
| 260 | 257 |
| 261 if (enable_configuration_policy) { | 258 if (enable_configuration_policy) { |
| 262 sources += [ "sync_policy_handler_unittest.cc" ] | 259 sources += [ "sync_policy_handler_unittest.cc" ] |
| 263 deps += [ | 260 deps += [ |
| 264 "//components/policy", | 261 "//components/policy", |
| 265 "//components/policy:policy_component", | 262 "//components/policy:policy_component", |
| 266 ] | 263 ] |
| 267 } | 264 } |
| 268 } | 265 } |
| OLD | NEW |