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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 "frontend_data_type_controller.cc", | 42 "frontend_data_type_controller.cc", |
43 "frontend_data_type_controller.h", | 43 "frontend_data_type_controller.h", |
44 "generic_change_processor.cc", | 44 "generic_change_processor.cc", |
45 "generic_change_processor.h", | 45 "generic_change_processor.h", |
46 "generic_change_processor_factory.cc", | 46 "generic_change_processor_factory.cc", |
47 "generic_change_processor_factory.h", | 47 "generic_change_processor_factory.h", |
48 "glue/browser_thread_model_worker.cc", | 48 "glue/browser_thread_model_worker.cc", |
49 "glue/browser_thread_model_worker.h", | 49 "glue/browser_thread_model_worker.h", |
50 "glue/chrome_report_unrecoverable_error.cc", | 50 "glue/chrome_report_unrecoverable_error.cc", |
51 "glue/chrome_report_unrecoverable_error.h", | 51 "glue/chrome_report_unrecoverable_error.h", |
| 52 "glue/sync_backend_host.cc", |
| 53 "glue/sync_backend_host.h", |
| 54 "glue/sync_backend_host_core.cc", |
| 55 "glue/sync_backend_host_core.h", |
| 56 "glue/sync_backend_host_impl.cc", |
| 57 "glue/sync_backend_host_impl.h", |
52 "glue/sync_backend_registrar.cc", | 58 "glue/sync_backend_registrar.cc", |
53 "glue/sync_backend_registrar.h", | 59 "glue/sync_backend_registrar.h", |
54 "glue/synced_session.cc", | 60 "glue/synced_session.cc", |
55 "glue/synced_session.h", | 61 "glue/synced_session.h", |
56 "glue/synced_window_delegate.h", | 62 "glue/synced_window_delegate.h", |
57 "glue/ui_model_worker.cc", | 63 "glue/ui_model_worker.cc", |
58 "glue/ui_model_worker.h", | 64 "glue/ui_model_worker.h", |
59 "invalidation_adapter.cc", | 65 "invalidation_adapter.cc", |
60 "invalidation_adapter.h", | 66 "invalidation_adapter.h", |
61 "invalidation_helper.cc", | 67 "invalidation_helper.cc", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 "tab_node_pool.h", | 125 "tab_node_pool.h", |
120 "ui_data_type_controller.cc", | 126 "ui_data_type_controller.cc", |
121 "ui_data_type_controller.h", | 127 "ui_data_type_controller.h", |
122 "user_selectable_sync_type.h", | 128 "user_selectable_sync_type.h", |
123 ] | 129 ] |
124 | 130 |
125 deps = [ | 131 deps = [ |
126 "//base", | 132 "//base", |
127 "//base:prefs", | 133 "//base:prefs", |
128 "//base/third_party/dynamic_annotations", | 134 "//base/third_party/dynamic_annotations", |
| 135 "//components/data_use_measurement/core", |
129 "//components/invalidation/public", | 136 "//components/invalidation/public", |
130 "//components/os_crypt", | 137 "//components/os_crypt", |
131 "//components/pref_registry", | 138 "//components/pref_registry", |
132 "//components/sessions", | 139 "//components/sessions", |
133 "//components/signin/core/browser", | 140 "//components/signin/core/browser", |
134 "//components/version_info", | 141 "//components/version_info", |
135 "//google_apis", | 142 "//google_apis", |
136 "//net", | 143 "//net", |
137 "//sync", | 144 "//sync", |
138 "//third_party/cacheinvalidation", | 145 "//third_party/cacheinvalidation", |
(...skipping 26 matching lines...) Expand all Loading... |
165 "fake_data_type_controller.cc", | 172 "fake_data_type_controller.cc", |
166 "fake_data_type_controller.h", | 173 "fake_data_type_controller.h", |
167 "fake_generic_change_processor.cc", | 174 "fake_generic_change_processor.cc", |
168 "fake_generic_change_processor.h", | 175 "fake_generic_change_processor.h", |
169 "fake_sync_client.cc", | 176 "fake_sync_client.cc", |
170 "fake_sync_client.h", | 177 "fake_sync_client.h", |
171 "fake_sync_service.cc", | 178 "fake_sync_service.cc", |
172 "fake_sync_service.h", | 179 "fake_sync_service.h", |
173 "frontend_data_type_controller_mock.cc", | 180 "frontend_data_type_controller_mock.cc", |
174 "frontend_data_type_controller_mock.h", | 181 "frontend_data_type_controller_mock.h", |
| 182 "glue/sync_backend_host_mock.cc", |
| 183 "glue/sync_backend_host_mock.h", |
175 "local_device_info_provider_mock.cc", | 184 "local_device_info_provider_mock.cc", |
176 "local_device_info_provider_mock.h", | 185 "local_device_info_provider_mock.h", |
177 "model_associator_mock.cc", | 186 "model_associator_mock.cc", |
178 "model_associator_mock.h", | 187 "model_associator_mock.h", |
179 "non_frontend_data_type_controller_mock.cc", | 188 "non_frontend_data_type_controller_mock.cc", |
180 "non_frontend_data_type_controller_mock.h", | 189 "non_frontend_data_type_controller_mock.h", |
181 "non_ui_data_type_controller_mock.cc", | 190 "non_ui_data_type_controller_mock.cc", |
182 "non_ui_data_type_controller_mock.h", | 191 "non_ui_data_type_controller_mock.h", |
183 "sync_api_component_factory_mock.cc", | 192 "sync_api_component_factory_mock.cc", |
184 "sync_api_component_factory_mock.h", | 193 "sync_api_component_factory_mock.h", |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 ] | 255 ] |
247 | 256 |
248 if (enable_configuration_policy) { | 257 if (enable_configuration_policy) { |
249 sources += [ "sync_policy_handler_unittest.cc" ] | 258 sources += [ "sync_policy_handler_unittest.cc" ] |
250 deps += [ | 259 deps += [ |
251 "//components/policy", | 260 "//components/policy", |
252 "//components/policy:policy_component", | 261 "//components/policy:policy_component", |
253 ] | 262 ] |
254 } | 263 } |
255 } | 264 } |
OLD | NEW |