| 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 static_library("sync_driver") { | 5 static_library("sync_driver") { |
| 6 sources = [ | 6 sources = [ |
| 7 "backend_data_type_configurer.cc", | 7 "backend_data_type_configurer.cc", |
| 8 "backend_data_type_configurer.h", | 8 "backend_data_type_configurer.h", |
| 9 "change_processor.cc", | 9 "change_processor.cc", |
| 10 "change_processor.h", | 10 "change_processor.h", |
| 11 "data_type_controller.cc", | 11 "data_type_controller.cc", |
| 12 "data_type_controller.h", | 12 "data_type_controller.h", |
| 13 "data_type_encryption_handler.cc", | 13 "data_type_encryption_handler.cc", |
| 14 "data_type_encryption_handler.h", | 14 "data_type_encryption_handler.h", |
| 15 "data_type_error_handler.h", | 15 "data_type_error_handler.h", |
| 16 "data_type_manager.cc", | 16 "data_type_manager.cc", |
| 17 "data_type_manager.h", | 17 "data_type_manager.h", |
| 18 "data_type_manager_impl.cc", | 18 "data_type_manager_impl.cc", |
| 19 "data_type_manager_impl.h", | 19 "data_type_manager_impl.h", |
| 20 "data_type_manager_observer.h", | 20 "data_type_manager_observer.h", |
| 21 "failed_data_types_handler.cc", | 21 "data_type_status_table.cc", |
| 22 "failed_data_types_handler.h", | 22 "data_type_status_table.h", |
| 23 "generic_change_processor.cc", | 23 "generic_change_processor.cc", |
| 24 "generic_change_processor.h", | 24 "generic_change_processor.h", |
| 25 "generic_change_processor_factory.cc", | 25 "generic_change_processor_factory.cc", |
| 26 "generic_change_processor_factory.h", | 26 "generic_change_processor_factory.h", |
| 27 "model_association_manager.cc", | 27 "model_association_manager.cc", |
| 28 "model_association_manager.h", | 28 "model_association_manager.h", |
| 29 "model_associator.h", | 29 "model_associator.h", |
| 30 "non_blocking_data_type_controller.cc", | 30 "non_blocking_data_type_controller.cc", |
| 31 "non_blocking_data_type_controller.h", | 31 "non_blocking_data_type_controller.h", |
| 32 "non_blocking_data_type_manager.cc", | 32 "non_blocking_data_type_manager.cc", |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 deps = [ | 83 deps = [ |
| 84 ":sync_driver", | 84 ":sync_driver", |
| 85 "//base", | 85 "//base", |
| 86 "//sync", | 86 "//sync", |
| 87 "//sync:test_support_sync_internal_api", | 87 "//sync:test_support_sync_internal_api", |
| 88 "//testing/gmock", | 88 "//testing/gmock", |
| 89 "//testing/gtest", | 89 "//testing/gtest", |
| 90 ] | 90 ] |
| 91 } | 91 } |
| OLD | NEW |