| 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 "backend_migrator.cc", | 9 "backend_migrator.cc", |
| 10 "backend_migrator.h", | 10 "backend_migrator.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "pref_names.h", | 51 "pref_names.h", |
| 52 "profile_sync_auth_provider.cc", | 52 "profile_sync_auth_provider.cc", |
| 53 "profile_sync_auth_provider.h", | 53 "profile_sync_auth_provider.h", |
| 54 "proxy_data_type_controller.cc", | 54 "proxy_data_type_controller.cc", |
| 55 "proxy_data_type_controller.h", | 55 "proxy_data_type_controller.h", |
| 56 "shared_change_processor.cc", | 56 "shared_change_processor.cc", |
| 57 "shared_change_processor.h", | 57 "shared_change_processor.h", |
| 58 "shared_change_processor_ref.cc", | 58 "shared_change_processor_ref.cc", |
| 59 "shared_change_processor_ref.h", | 59 "shared_change_processor_ref.h", |
| 60 "sync_api_component_factory.h", | 60 "sync_api_component_factory.h", |
| 61 "sync_error_controller.cc", |
| 62 "sync_error_controller.h", |
| 61 "sync_frontend.cc", | 63 "sync_frontend.cc", |
| 62 "sync_frontend.h", | 64 "sync_frontend.h", |
| 63 "sync_prefs.cc", | 65 "sync_prefs.cc", |
| 64 "sync_prefs.h", | 66 "sync_prefs.h", |
| 65 "sync_service.h", | 67 "sync_service.h", |
| 66 "sync_service_observer.cc", | 68 "sync_service_observer.cc", |
| 67 "sync_service_observer.h", | 69 "sync_service_observer.h", |
| 68 "system_encryptor.cc", | 70 "system_encryptor.cc", |
| 69 "system_encryptor.h", | 71 "system_encryptor.h", |
| 70 "ui_data_type_controller.cc", | 72 "ui_data_type_controller.cc", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 deps = [ | 108 deps = [ |
| 107 ":sync_driver", | 109 ":sync_driver", |
| 108 "//base", | 110 "//base", |
| 109 "//components/sessions", | 111 "//components/sessions", |
| 110 "//sync", | 112 "//sync", |
| 111 "//sync:test_support_sync_internal_api", | 113 "//sync:test_support_sync_internal_api", |
| 112 "//testing/gmock", | 114 "//testing/gmock", |
| 113 "//testing/gtest", | 115 "//testing/gtest", |
| 114 ] | 116 ] |
| 115 } | 117 } |
| OLD | NEW |