1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/features.gni")
source_set("sync_driver") {
sources = [
"backend_data_type_configurer.cc",
"backend_data_type_configurer.h",
"backend_migrator.cc",
"backend_migrator.h",
"change_processor.cc",
"change_processor.h",
"data_type_controller.cc",
"data_type_controller.h",
"data_type_encryption_handler.cc",
"data_type_encryption_handler.h",
"data_type_error_handler.h",
"data_type_manager.cc",
"data_type_manager.h",
"data_type_manager_impl.cc",
"data_type_manager_impl.h",
"data_type_manager_observer.h",
"data_type_status_table.cc",
"data_type_status_table.h",
"device_info.cc",
"device_info.h",
"device_info_data_type_controller.cc",
"device_info_data_type_controller.h",
"device_info_sync_service.cc",
"device_info_sync_service.h",
"device_info_tracker.h",
"generic_change_processor.cc",
"generic_change_processor.h",
"generic_change_processor_factory.cc",
"generic_change_processor_factory.h",
"glue/synced_session.cc",
"glue/synced_session.h",
"glue/typed_url_model_associator.cc",
"glue/typed_url_model_associator.h",
"invalidation_adapter.cc",
"invalidation_adapter.h",
"invalidation_helper.cc",
"invalidation_helper.h",
"local_device_info_provider.h",
"model_association_manager.cc",
"model_association_manager.h",
"model_associator.h",
"non_blocking_data_type_controller.cc",
"non_blocking_data_type_controller.h",
"non_blocking_data_type_manager.cc",
"non_blocking_data_type_manager.h",
"non_ui_data_type_controller.cc",
"non_ui_data_type_controller.h",
"open_tabs_ui_delegate.cc",
"open_tabs_ui_delegate.h",
"pref_names.cc",
"pref_names.h",
"profile_sync_auth_provider.cc",
"profile_sync_auth_provider.h",
"profile_sync_components_factory.h",
"protocol_event_observer.cc",
"protocol_event_observer.h",
"proxy_data_type_controller.cc",
"proxy_data_type_controller.h",
"shared_change_processor.cc",
"shared_change_processor.h",
"shared_change_processor_ref.cc",
"shared_change_processor_ref.h",
"sync_api_component_factory.h",
"sync_client.cc",
"sync_client.h",
"sync_error_controller.cc",
"sync_error_controller.h",
"sync_frontend.cc",
"sync_frontend.h",
"sync_prefs.cc",
"sync_prefs.h",
"sync_service.h",
"sync_service_observer.cc",
"sync_service_observer.h",
"sync_service_utils.cc",
"sync_service_utils.h",
"sync_stopped_reporter.cc",
"sync_stopped_reporter.h",
"system_encryptor.cc",
"system_encryptor.h",
"tab_node_pool.cc",
"tab_node_pool.h",
"ui_data_type_controller.cc",
"ui_data_type_controller.h",
"user_selectable_sync_type.h",
]
deps = [
"//base",
"//components/history/core/browser",
"//components/invalidation/public",
"//components/os_crypt",
"//components/sessions",
"//components/signin/core/browser",
"//net",
"//sync",
"//third_party/cacheinvalidation",
]
if (enable_configuration_policy) {
sources += [
"sync_policy_handler.cc",
"sync_policy_handler.h",
]
deps += [
"//components/policy",
"//components/policy:policy_component",
]
}
}
source_set("test_support") {
testonly = true
sources = [
"change_processor_mock.cc",
"change_processor_mock.h",
"data_type_controller_mock.cc",
"data_type_controller_mock.h",
"data_type_error_handler_mock.cc",
"data_type_error_handler_mock.h",
"data_type_manager_mock.cc",
"data_type_manager_mock.h",
"fake_data_type_controller.cc",
"fake_data_type_controller.h",
"fake_generic_change_processor.cc",
"fake_generic_change_processor.h",
"local_device_info_provider_mock.cc",
"local_device_info_provider_mock.h",
"model_associator_mock.cc",
"model_associator_mock.h",
"non_ui_data_type_controller_mock.cc",
"non_ui_data_type_controller_mock.h",
]
public_deps = [
":sync_driver",
"//sync",
]
deps = [
"//base",
"//components/sessions",
"//sync:test_support_sync_internal_api",
"//testing/gmock",
"//testing/gtest",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"data_type_manager_impl_unittest.cc",
"device_info_data_type_controller_unittest.cc",
"device_info_sync_service_unittest.cc",
"generic_change_processor_unittest.cc",
"model_association_manager_unittest.cc",
"non_blocking_data_type_controller_unittest.cc",
"non_ui_data_type_controller_unittest.cc",
"shared_change_processor_unittest.cc",
"sync_policy_handler_unittest.cc",
"sync_prefs_unittest.cc",
"sync_stopped_reporter_unittest.cc",
"system_encryptor_unittest.cc",
"tab_node_pool_unittest.cc",
"ui_data_type_controller_unittest.cc",
]
deps = [
":test_support",
"//testing/gmock",
"//testing/gtest",
]
}
|