Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: components/sync.gyp

Issue 2155763002: [Sync] //components/sync manual changes [DO NOT SUBMIT] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sc-automated
Patch Set: Rebase. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/sessions/DEPS ('k') | components/sync/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # Setting these two variables allows other targets to use the 8 # Setting these two variables allows other targets to use the
9 # sync_proto_sources variable as the list of sync protocol buffer files. 9 # sync_proto_sources variable as the list of sync protocol buffer files.
10 'sync_proto_sources_dir': 'protocol', 10 'sync_proto_sources_dir': 'sync/protocol',
11 'sync_proto_sources': [ 11 'sync_proto_sources': [
12 '<@(sync_proto_source_paths)', 12 '<@(sync_proto_source_paths)',
13 ], 13 ],
14 }, 14 },
15 15
16 'includes': [ 16 'includes': [
17 'protocol/protocol.gypi', 17 'sync/protocol/protocol.gypi',
18 'sync_android.gypi', 18 'sync/sync_android.gypi',
19 'sync_tests.gypi', 19 'sync/sync_tests.gypi',
20 ], 20 ],
21 21
22 'targets': [ 22 'targets': [
23 # This target will add '-lsync_core' and '-lsync_proto' to the link line of 23 # This target will add '-lsync_core' and '-lsync_proto' to the link line of
24 # targets that depend on it. Anything that depends on sync code should 24 # targets that depend on it. Anything that depends on sync code should
25 # declare a dependency on this target. 25 # declare a dependency on this target.
26 { 26 {
27 'target_name': 'sync', 27 'target_name': 'sync',
28 'type': 'none', 28 'type': 'none',
29 'dependencies': [ 29 'dependencies': [
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 '../third_party/zlib/zlib.gyp:zlib', 61 '../third_party/zlib/zlib.gyp:zlib',
62 '../url/url.gyp:url_lib', 62 '../url/url.gyp:url_lib',
63 'attachment_store_proto', 63 'attachment_store_proto',
64 'sync_proto', 64 'sync_proto',
65 ], 65 ],
66 'export_dependent_settings': [ 66 'export_dependent_settings': [
67 '../net/net.gyp:net', 67 '../net/net.gyp:net',
68 'sync_proto', 68 'sync_proto',
69 ], 69 ],
70 'sources': [ 70 'sources': [
71 'api/attachments/attachment.cc', 71 'sync/api/attachments/attachment.cc',
72 'api/attachments/attachment.h', 72 'sync/api/attachments/attachment.h',
73 'api/attachments/attachment_id.cc', 73 'sync/api/attachments/attachment_id.cc',
74 'api/attachments/attachment_id.h', 74 'sync/api/attachments/attachment_id.h',
75 'api/attachments/attachment_metadata.cc', 75 'sync/api/attachments/attachment_metadata.cc',
76 'api/attachments/attachment_metadata.h', 76 'sync/api/attachments/attachment_metadata.h',
77 'api/attachments/attachment_store.cc', 77 'sync/api/attachments/attachment_store.cc',
78 'api/attachments/attachment_store.h', 78 'sync/api/attachments/attachment_store.h',
79 'api/attachments/attachment_store_backend.cc', 79 'sync/api/attachments/attachment_store_backend.cc',
80 'api/attachments/attachment_store_backend.h', 80 'sync/api/attachments/attachment_store_backend.h',
81 'api/conflict_resolution.cc', 81 'sync/api/conflict_resolution.cc',
82 'api/conflict_resolution.h', 82 'sync/api/conflict_resolution.h',
83 'api/data_batch.h', 83 'sync/api/data_batch.h',
84 'api/entity_change.cc', 84 'sync/api/entity_change.cc',
85 'api/entity_change.h', 85 'sync/api/entity_change.h',
86 'api/entity_data.cc', 86 'sync/api/entity_data.cc',
87 'api/entity_data.h', 87 'sync/api/entity_data.h',
88 'api/metadata_batch.cc', 88 'sync/api/metadata_batch.cc',
89 'api/metadata_batch.h', 89 'sync/api/metadata_batch.h',
90 'api/metadata_change_list.h', 90 'sync/api/metadata_change_list.h',
91 'api/model_type_change_processor.cc', 91 'sync/api/model_type_change_processor.cc',
92 'api/model_type_change_processor.h', 92 'sync/api/model_type_change_processor.h',
93 'api/model_type_service.cc', 93 'sync/api/model_type_service.cc',
94 'api/model_type_service.h', 94 'sync/api/model_type_service.h',
95 'api/model_type_store.cc', 95 'sync/api/model_type_store.cc',
96 'api/model_type_store.h', 96 'sync/api/model_type_store.h',
97 'api/string_ordinal.h', 97 'sync/api/string_ordinal.h',
98 'api/sync_change.cc', 98 'sync/api/sync_change.cc',
99 'api/sync_change.h', 99 'sync/api/sync_change.h',
100 'api/sync_change_processor.cc', 100 'sync/api/sync_change_processor.cc',
101 'api/sync_change_processor.h', 101 'sync/api/sync_change_processor.h',
102 'api/sync_data.cc', 102 'sync/api/sync_data.cc',
103 'api/sync_data.h', 103 'sync/api/sync_data.h',
104 'api/sync_error.cc', 104 'sync/api/sync_error.cc',
105 'api/sync_error.h', 105 'sync/api/sync_error.h',
106 'api/sync_error_factory.cc', 106 'sync/api/sync_error_factory.cc',
107 'api/sync_error_factory.h', 107 'sync/api/sync_error_factory.h',
108 'api/sync_merge_result.cc', 108 'sync/api/sync_merge_result.cc',
109 'api/sync_merge_result.h', 109 'sync/api/sync_merge_result.h',
110 'api/syncable_service.cc', 110 'sync/api/syncable_service.cc',
111 'api/syncable_service.h', 111 'sync/api/syncable_service.h',
112 'api/time.h', 112 'sync/api/time.h',
113 'base/sync_export.h', 113 'sync/base/sync_export.h',
114 'engine_impl/all_status.cc', 114 'sync/engine_impl/all_status.cc',
115 'engine_impl/all_status.h', 115 'sync/engine_impl/all_status.h',
116 'engine_impl/apply_control_data_updates.cc', 116 'sync/engine_impl/apply_control_data_updates.cc',
117 'engine_impl/apply_control_data_updates.h', 117 'sync/engine_impl/apply_control_data_updates.h',
118 'engine_impl/backoff_delay_provider.cc', 118 'sync/engine_impl/backoff_delay_provider.cc',
119 'engine_impl/backoff_delay_provider.h', 119 'sync/engine_impl/backoff_delay_provider.h',
120 'engine_impl/clear_server_data.cc', 120 'sync/engine_impl/clear_server_data.cc',
121 'engine_impl/clear_server_data.h', 121 'sync/engine_impl/clear_server_data.h',
122 'engine_impl/commit.cc', 122 'sync/engine_impl/commit.cc',
123 'engine_impl/commit.h', 123 'sync/engine_impl/commit.h',
124 'engine_impl/commit_contribution.cc', 124 'sync/engine_impl/commit_contribution.cc',
125 'engine_impl/commit_contribution.h', 125 'sync/engine_impl/commit_contribution.h',
126 'engine_impl/commit_contributor.cc', 126 'sync/engine_impl/commit_contributor.cc',
127 'engine_impl/commit_contributor.h', 127 'sync/engine_impl/commit_contributor.h',
128 'engine_impl/commit_processor.cc', 128 'sync/engine_impl/commit_processor.cc',
129 'engine_impl/commit_processor.h', 129 'sync/engine_impl/commit_processor.h',
130 'engine_impl/commit_queue.cc', 130 'sync/engine_impl/commit_queue.cc',
131 'engine_impl/commit_queue.h', 131 'sync/engine_impl/commit_queue.h',
132 'engine_impl/commit_util.cc', 132 'sync/engine_impl/commit_util.cc',
133 'engine_impl/commit_util.h', 133 'sync/engine_impl/commit_util.h',
134 'engine_impl/conflict_resolver.cc', 134 'sync/engine_impl/conflict_resolver.cc',
135 'engine_impl/conflict_resolver.h', 135 'sync/engine_impl/conflict_resolver.h',
136 'engine_impl/conflict_util.cc', 136 'sync/engine_impl/conflict_util.cc',
137 'engine_impl/conflict_util.h', 137 'sync/engine_impl/conflict_util.h',
138 'engine_impl/directory_commit_contribution.cc', 138 'sync/engine_impl/directory_commit_contribution.cc',
139 'engine_impl/directory_commit_contribution.h', 139 'sync/engine_impl/directory_commit_contribution.h',
140 'engine_impl/directory_commit_contributor.cc', 140 'sync/engine_impl/directory_commit_contributor.cc',
141 'engine_impl/directory_commit_contributor.h', 141 'sync/engine_impl/directory_commit_contributor.h',
142 'engine_impl/directory_update_handler.cc', 142 'sync/engine_impl/directory_update_handler.cc',
143 'engine_impl/directory_update_handler.h', 143 'sync/engine_impl/directory_update_handler.h',
144 'engine_impl/get_commit_ids.cc', 144 'sync/engine_impl/get_commit_ids.cc',
145 'engine_impl/get_commit_ids.h', 145 'sync/engine_impl/get_commit_ids.h',
146 'engine_impl/get_updates_delegate.cc', 146 'sync/engine_impl/get_updates_delegate.cc',
147 'engine_impl/get_updates_delegate.h', 147 'sync/engine_impl/get_updates_delegate.h',
148 'engine_impl/get_updates_processor.cc', 148 'sync/engine_impl/get_updates_processor.cc',
149 'engine_impl/get_updates_processor.h', 149 'sync/engine_impl/get_updates_processor.h',
150 'engine_impl/model_type_worker.cc', 150 'sync/engine_impl/model_type_worker.cc',
151 'engine_impl/model_type_worker.h', 151 'sync/engine_impl/model_type_worker.h',
152 'engine_impl/net/server_connection_manager.cc', 152 'sync/engine_impl/net/server_connection_manager.cc',
153 'engine_impl/net/server_connection_manager.h', 153 'sync/engine_impl/net/server_connection_manager.h',
154 'engine_impl/net/url_translator.cc', 154 'sync/engine_impl/net/url_translator.cc',
155 'engine_impl/net/url_translator.h', 155 'sync/engine_impl/net/url_translator.h',
156 'engine_impl/non_blocking_type_commit_contribution.cc', 156 'sync/engine_impl/non_blocking_type_commit_contribution.cc',
157 'engine_impl/non_blocking_type_commit_contribution.h', 157 'sync/engine_impl/non_blocking_type_commit_contribution.h',
158 'engine_impl/nudge_handler.cc', 158 'sync/engine_impl/nudge_handler.cc',
159 'engine_impl/nudge_handler.h', 159 'sync/engine_impl/nudge_handler.h',
160 'engine_impl/nudge_source.cc', 160 'sync/engine_impl/nudge_source.cc',
161 'engine_impl/nudge_source.h', 161 'sync/engine_impl/nudge_source.h',
162 'engine_impl/process_updates_util.cc', 162 'sync/engine_impl/process_updates_util.cc',
163 'engine_impl/process_updates_util.h', 163 'sync/engine_impl/process_updates_util.h',
164 'engine_impl/sync_cycle_event.cc', 164 'sync/engine_impl/sync_cycle_event.cc',
165 'engine_impl/sync_cycle_event.h', 165 'sync/engine_impl/sync_cycle_event.h',
166 'engine_impl/sync_engine_event_listener.cc', 166 'sync/engine_impl/sync_engine_event_listener.cc',
167 'engine_impl/sync_engine_event_listener.h', 167 'sync/engine_impl/sync_engine_event_listener.h',
168 'engine_impl/sync_scheduler.cc', 168 'sync/engine_impl/sync_scheduler.cc',
169 'engine_impl/sync_scheduler.h', 169 'sync/engine_impl/sync_scheduler.h',
170 'engine_impl/sync_scheduler_impl.cc', 170 'sync/engine_impl/sync_scheduler_impl.cc',
171 'engine_impl/sync_scheduler_impl.h', 171 'sync/engine_impl/sync_scheduler_impl.h',
172 'engine_impl/syncer.cc', 172 'sync/engine_impl/syncer.cc',
173 'engine_impl/syncer.h', 173 'sync/engine_impl/syncer.h',
174 'engine_impl/syncer_proto_util.cc', 174 'sync/engine_impl/syncer_proto_util.cc',
175 'engine_impl/syncer_proto_util.h', 175 'sync/engine_impl/syncer_proto_util.h',
176 'engine_impl/syncer_types.h', 176 'sync/engine_impl/syncer_types.h',
177 'engine_impl/syncer_util.cc', 177 'sync/engine_impl/syncer_util.cc',
178 'engine_impl/syncer_util.h', 178 'sync/engine_impl/syncer_util.h',
179 'engine_impl/traffic_logger.cc', 179 'sync/engine_impl/traffic_logger.cc',
180 'engine_impl/traffic_logger.h', 180 'sync/engine_impl/traffic_logger.h',
181 'engine_impl/update_applicator.cc', 181 'sync/engine_impl/update_applicator.cc',
182 'engine_impl/update_applicator.h', 182 'sync/engine_impl/update_applicator.h',
183 'engine_impl/update_handler.cc', 183 'sync/engine_impl/update_handler.cc',
184 'engine_impl/update_handler.h', 184 'sync/engine_impl/update_handler.h',
185 'engine_impl/worker_entity_tracker.cc', 185 'sync/engine_impl/worker_entity_tracker.cc',
186 'engine_impl/worker_entity_tracker.h', 186 'sync/engine_impl/worker_entity_tracker.h',
187 'core/activation_context.cc', 187 'sync/core/activation_context.cc',
188 'internal_api/attachments/attachment_downloader.cc', 188 'sync/core_impl/attachments/attachment_downloader.cc',
189 'internal_api/attachments/attachment_downloader_impl.cc', 189 'sync/core_impl/attachments/attachment_downloader_impl.cc',
190 'internal_api/attachments/attachment_service.cc', 190 'sync/core_impl/attachments/attachment_service.cc',
191 'internal_api/attachments/attachment_service_impl.cc', 191 'sync/core_impl/attachments/attachment_service_impl.cc',
192 'internal_api/attachments/attachment_service_proxy.cc', 192 'sync/core_impl/attachments/attachment_service_proxy.cc',
193 'internal_api/attachments/attachment_service_proxy_for_test.cc', 193 'sync/core_impl/attachments/attachment_service_proxy_for_test.cc',
194 'internal_api/attachments/attachment_store_frontend.cc', 194 'sync/core_impl/attachments/attachment_store_frontend.cc',
195 'internal_api/attachments/attachment_uploader.cc', 195 'sync/core_impl/attachments/attachment_uploader.cc',
196 'internal_api/attachments/attachment_uploader_impl.cc', 196 'sync/core_impl/attachments/attachment_uploader_impl.cc',
197 'internal_api/attachments/attachment_util.cc', 197 'sync/core_impl/attachments/attachment_util.cc',
198 'internal_api/attachments/fake_attachment_downloader.cc', 198 'sync/core_impl/attachments/fake_attachment_downloader.cc',
199 'internal_api/attachments/fake_attachment_uploader.cc', 199 'sync/core_impl/attachments/fake_attachment_uploader.cc',
200 'internal_api/attachments/in_memory_attachment_store.cc', 200 'sync/core_impl/attachments/in_memory_attachment_store.cc',
201 'internal_api/attachments/on_disk_attachment_store.cc', 201 'sync/core_impl/attachments/on_disk_attachment_store.cc',
202 'internal_api/attachments/task_queue.cc', 202 'sync/core_impl/attachments/task_queue.cc',
203 'core/base_node.cc', 203 'sync/core/base_node.cc',
204 'core/base_transaction.cc', 204 'sync/core/base_transaction.cc',
205 'core/change_record.cc', 205 'sync/core/change_record.cc',
206 'internal_api/change_reorder_buffer.cc', 206 'sync/core_impl/change_reorder_buffer.cc',
207 'internal_api/change_reorder_buffer.h', 207 'sync/core_impl/change_reorder_buffer.h',
208 'internal_api/debug_info_event_listener.cc', 208 'sync/core_impl/debug_info_event_listener.cc',
209 'internal_api/debug_info_event_listener.h', 209 'sync/core_impl/debug_info_event_listener.h',
210 'core/delete_journal.cc', 210 'sync/core/delete_journal.cc',
211 'engine/events/clear_server_data_request_event.cc', 211 'sync/engine/events/clear_server_data_request_event.cc',
212 'engine/events/clear_server_data_response_event.cc', 212 'sync/engine/events/clear_server_data_response_event.cc',
213 'engine/events/commit_request_event.cc', 213 'sync/engine/events/commit_request_event.cc',
214 'engine/events/commit_response_event.cc', 214 'sync/engine/events/commit_response_event.cc',
215 'engine/events/configure_get_updates_request_event.cc', 215 'sync/engine/events/configure_get_updates_request_event.cc',
216 'engine/events/get_updates_response_event.cc', 216 'sync/engine/events/get_updates_response_event.cc',
217 'engine/events/normal_get_updates_request_event.cc', 217 'sync/engine/events/normal_get_updates_request_event.cc',
218 'engine/events/poll_get_updates_request_event.cc', 218 'sync/engine/events/poll_get_updates_request_event.cc',
219 'engine/events/protocol_event.cc', 219 'sync/engine/events/protocol_event.cc',
220 'core/http_bridge.cc', 220 'sync/core/http_bridge.cc',
221 'core/http_bridge_network_resources.cc', 221 'sync/core/http_bridge_network_resources.cc',
222 'core/internal_components_factory_impl.cc', 222 'sync/core/internal_components_factory_impl.cc',
223 'internal_api/js_mutation_event_observer.cc', 223 'sync/core_impl/js_mutation_event_observer.cc',
224 'internal_api/js_mutation_event_observer.h', 224 'sync/core_impl/js_mutation_event_observer.h',
225 'internal_api/js_sync_encryption_handler_observer.cc', 225 'sync/core_impl/js_sync_encryption_handler_observer.cc',
226 'internal_api/js_sync_encryption_handler_observer.h', 226 'sync/core_impl/js_sync_encryption_handler_observer.h',
227 'internal_api/js_sync_manager_observer.cc', 227 'sync/core_impl/js_sync_manager_observer.cc',
228 'internal_api/js_sync_manager_observer.h', 228 'sync/core_impl/js_sync_manager_observer.h',
229 'core/model_type_connector.cc', 229 'sync/core/model_type_connector.cc',
230 'internal_api/model_type_connector_proxy.cc', 230 'sync/core_impl/model_type_connector_proxy.cc',
231 'core/model_type_store_backend.cc', 231 'sync/core/model_type_store_backend.cc',
232 'core/model_type_store_impl.cc', 232 'sync/core/model_type_store_impl.cc',
233 'core/processor_entity_tracker.cc', 233 'sync/core/processor_entity_tracker.cc',
234 'internal_api/protocol_event_buffer.cc', 234 'sync/core_impl/protocol_event_buffer.cc',
235 'internal_api/protocol_event_buffer.h', 235 'sync/core_impl/protocol_event_buffer.h',
236 'core/activation_context.h', 236 'sync/core/activation_context.h',
237 'core/attachments/attachment_downloader.h', 237 'sync/core/attachments/attachment_downloader.h',
238 'core/attachments/attachment_downloader_impl.h', 238 'sync/core/attachments/attachment_downloader_impl.h',
239 'core/attachments/attachment_service.h', 239 'sync/core/attachments/attachment_service.h',
240 'core/attachments/attachment_service_impl.h', 240 'sync/core/attachments/attachment_service_impl.h',
241 'core/attachments/attachment_service_proxy.h', 241 'sync/core/attachments/attachment_service_proxy.h',
242 'core/attachments/attachment_service_proxy_for_test.h', 242 'sync/core/attachments/attachment_service_proxy_for_test.h',
243 'core/attachments/attachment_store_frontend.h', 243 'sync/core/attachments/attachment_store_frontend.h',
244 'core/attachments/attachment_uploader.h', 244 'sync/core/attachments/attachment_uploader.h',
245 'core/attachments/attachment_uploader_impl.h', 245 'sync/core/attachments/attachment_uploader_impl.h',
246 'core/attachments/attachment_util.h', 246 'sync/core/attachments/attachment_util.h',
247 'core/attachments/fake_attachment_downloader.h', 247 'sync/core/attachments/fake_attachment_downloader.h',
248 'core/attachments/fake_attachment_uploader.h', 248 'sync/core/attachments/fake_attachment_uploader.h',
249 'core/attachments/in_memory_attachment_store.h', 249 'sync/core/attachments/in_memory_attachment_store.h',
250 'core/attachments/on_disk_attachment_store.h', 250 'sync/core/attachments/on_disk_attachment_store.h',
251 'core/attachments/task_queue.h', 251 'sync/core/attachments/task_queue.h',
252 'base/attachment_id_proto.cc', 252 'sync/base/attachment_id_proto.cc',
253 'base/attachment_id_proto.h', 253 'sync/base/attachment_id_proto.h',
254 'base/cancelation_observer.cc', 254 'sync/base/cancelation_observer.cc',
255 'base/cancelation_observer.h', 255 'sync/base/cancelation_observer.h',
256 'base/cancelation_signal.cc', 256 'sync/base/cancelation_signal.cc',
257 'base/cancelation_signal.h', 257 'sync/base/cancelation_signal.h',
258 'base/enum_set.h', 258 'sync/base/enum_set.h',
259 'base/enum_set.h', 259 'sync/base/enum_set.h',
260 'base/invalidation_interface.cc', 260 'sync/base/invalidation_interface.cc',
261 'base/invalidation_interface.h', 261 'sync/base/invalidation_interface.h',
262 'base/model_type.h', 262 'sync/base/model_type.h',
263 'base/node_ordinal.cc', 263 'sync/base/node_ordinal.cc',
264 'base/node_ordinal.h', 264 'sync/base/node_ordinal.h',
265 'base/ordinal.h', 265 'sync/base/ordinal.h',
266 'base/progress_marker_map.cc', 266 'sync/base/progress_marker_map.cc',
267 'base/progress_marker_map.h', 267 'sync/base/progress_marker_map.h',
268 'base/stop_source.h', 268 'sync/base/stop_source.h',
269 'base/unique_position.cc', 269 'sync/base/unique_position.cc',
270 'base/unique_position.h', 270 'sync/base/unique_position.h',
271 'core/base_node.h', 271 'sync/core/base_node.h',
272 'core/base_transaction.h', 272 'sync/core/base_transaction.h',
273 'core/change_record.h', 273 'sync/core/change_record.h',
274 'core/configure_reason.h', 274 'sync/core/configure_reason.h',
275 'core/connection_status.h', 275 'sync/core/connection_status.h',
276 'core/data_batch_impl.h', 276 'sync/core/data_batch_impl.h',
277 'core/data_batch_impl.cc', 277 'sync/core/data_batch_impl.cc',
278 'core/data_type_association_stats.cc', 278 'sync/core/data_type_association_stats.cc',
279 'core/data_type_association_stats.h', 279 'sync/core/data_type_association_stats.h',
280 'core/data_type_debug_info_listener.cc', 280 'sync/core/data_type_debug_info_listener.cc',
281 'core/data_type_debug_info_listener.h', 281 'sync/core/data_type_debug_info_listener.h',
282 'core/data_type_error_handler.h', 282 'sync/core/data_type_error_handler.h',
283 'core/delete_journal.h', 283 'sync/core/delete_journal.h',
284 'engine/model_safe_worker.cc', 284 'sync/engine/model_safe_worker.cc',
285 'engine/model_safe_worker.h', 285 'sync/engine/model_safe_worker.h',
286 'engine/passive_model_worker.cc', 286 'sync/engine/passive_model_worker.cc',
287 'engine/passive_model_worker.h', 287 'sync/engine/passive_model_worker.h',
288 'engine/polling_constants.cc', 288 'sync/engine/polling_constants.cc',
289 'engine/polling_constants.h', 289 'sync/engine/polling_constants.h',
290 'engine/sync_status.cc', 290 'sync/engine/sync_status.cc',
291 'engine/sync_status.h', 291 'sync/engine/sync_status.h',
292 'engine/events/clear_server_data_request_event.h', 292 'sync/engine/events/clear_server_data_request_event.h',
293 'engine/events/clear_server_data_response_event.h', 293 'sync/engine/events/clear_server_data_response_event.h',
294 'engine/events/commit_request_event.h', 294 'sync/engine/events/commit_request_event.h',
295 'engine/events/commit_response_event.h', 295 'sync/engine/events/commit_response_event.h',
296 'engine/events/configure_get_updates_request_event.h', 296 'sync/engine/events/configure_get_updates_request_event.h',
297 'engine/events/get_updates_response_event.h', 297 'sync/engine/events/get_updates_response_event.h',
298 'engine/events/normal_get_updates_request_event.h', 298 'sync/engine/events/normal_get_updates_request_event.h',
299 'engine/events/poll_get_updates_request_event.h', 299 'sync/engine/events/poll_get_updates_request_event.h',
300 'engine/events/protocol_event.h', 300 'sync/engine/events/protocol_event.h',
301 'core/http_bridge.h', 301 'sync/core/http_bridge.h',
302 'core/http_bridge_network_resources.h', 302 'sync/core/http_bridge_network_resources.h',
303 'core/http_post_provider_factory.h', 303 'sync/core/http_post_provider_factory.h',
304 'core/http_post_provider_interface.h', 304 'sync/core/http_post_provider_interface.h',
305 'core/internal_components_factory.h', 305 'sync/core/internal_components_factory.h',
306 'core/internal_components_factory_impl.h', 306 'sync/core/internal_components_factory_impl.h',
307 'core/model_type_connector.h', 307 'sync/core/model_type_connector.h',
308 'core/model_type_connector_proxy.h', 308 'sync/core/model_type_connector_proxy.h',
309 'core/model_type_processor.cc', 309 'sync/core/model_type_processor.cc',
310 'core/model_type_processor.h', 310 'sync/core/model_type_processor.h',
311 'core/model_type_store_backend.h', 311 'sync/core/model_type_store_backend.h',
312 'core/model_type_store_impl.h', 312 'sync/core/model_type_store_impl.h',
313 'core/network_resources.h', 313 'sync/core/network_resources.h',
314 'core/non_blocking_sync_common.cc', 314 'sync/core/non_blocking_sync_common.cc',
315 'core/non_blocking_sync_common.h', 315 'sync/core/non_blocking_sync_common.h',
316 'core/processor_entity_tracker.h', 316 'sync/core/processor_entity_tracker.h',
317 'core/read_node.h', 317 'sync/core/read_node.h',
318 'core/read_transaction.h', 318 'sync/core/read_transaction.h',
319 'sessions/commit_counters.cc', 319 'sync/sessions/commit_counters.cc',
320 'sessions/commit_counters.h', 320 'sync/sessions/commit_counters.h',
321 'sessions/model_neutral_state.cc', 321 'sync/sessions/model_neutral_state.cc',
322 'sessions/model_neutral_state.h', 322 'sync/sessions/model_neutral_state.h',
323 'sessions/status_counters.cc', 323 'sync/sessions/status_counters.cc',
324 'sessions/status_counters.h', 324 'sync/sessions/status_counters.h',
325 'sessions/sync_session_snapshot.cc', 325 'sync/sessions/sync_session_snapshot.cc',
326 'sessions/sync_session_snapshot.h', 326 'sync/sessions/sync_session_snapshot.h',
327 'sessions/type_debug_info_observer.cc', 327 'sync/sessions/type_debug_info_observer.cc',
328 'sessions/type_debug_info_observer.h', 328 'sync/sessions/type_debug_info_observer.h',
329 'sessions/update_counters.cc', 329 'sync/sessions/update_counters.cc',
330 'sessions/update_counters.h', 330 'sync/sessions/update_counters.h',
331 'core/shared_model_type_processor.h', 331 'sync/core/shared_model_type_processor.h',
332 'core/shutdown_reason.h', 332 'sync/core/shutdown_reason.h',
333 'core/simple_metadata_change_list.cc', 333 'sync/core/simple_metadata_change_list.cc',
334 'core/simple_metadata_change_list.h', 334 'sync/core/simple_metadata_change_list.h',
335 'core/sync_auth_provider.h', 335 'sync/core/sync_auth_provider.h',
336 'core/sync_encryption_handler.cc', 336 'sync/core/sync_encryption_handler.cc',
337 'core/sync_encryption_handler.h', 337 'sync/core/sync_encryption_handler.h',
338 'core/sync_manager.cc', 338 'sync/core/sync_manager.cc',
339 'core/sync_manager.h', 339 'sync/core/sync_manager.h',
340 'core/sync_manager_factory.h', 340 'sync/core/sync_manager_factory.h',
341 'core/user_share.h', 341 'sync/core/user_share.h',
342 'base/experiments.h', 342 'sync/base/experiments.h',
343 'base/immutable.h', 343 'sync/base/immutable.h',
344 'base/proto_value_ptr.h', 344 'sync/base/proto_value_ptr.h',
345 'base/sync_db_util.h', 345 'sync/base/sync_db_util.h',
346 'base/sync_string_conversions.cc', 346 'sync/base/sync_string_conversions.cc',
347 'base/sync_string_conversions.h', 347 'sync/base/sync_string_conversions.h',
348 'base/syncer_error.cc', 348 'sync/base/syncer_error.cc',
349 'base/syncer_error.h', 349 'sync/base/syncer_error.h',
350 'base/unrecoverable_error_handler.h', 350 'sync/base/unrecoverable_error_handler.h',
351 'base/unrecoverable_error_info.cc', 351 'sync/base/unrecoverable_error_info.cc',
352 'base/unrecoverable_error_info.h', 352 'sync/base/unrecoverable_error_info.h',
353 'base/weak_handle.cc', 353 'sync/base/weak_handle.cc',
354 'base/weak_handle.h', 354 'sync/base/weak_handle.h',
355 'core/write_node.h', 355 'sync/core/write_node.h',
356 'core/write_transaction.h', 356 'sync/core/write_transaction.h',
357 'core/read_node.cc', 357 'sync/core/read_node.cc',
358 'core/read_transaction.cc', 358 'sync/core/read_transaction.cc',
359 'core/shared_model_type_processor.cc', 359 'sync/core/shared_model_type_processor.cc',
360 'core/sync_db_util.cc', 360 'sync/core/sync_db_util.cc',
361 'internal_api/sync_encryption_handler_impl.cc', 361 'sync/core_impl/sync_encryption_handler_impl.cc',
362 'internal_api/sync_encryption_handler_impl.h', 362 'sync/core_impl/sync_encryption_handler_impl.h',
363 'core/sync_manager_factory.cc', 363 'sync/core/sync_manager_factory.cc',
364 'internal_api/sync_manager_impl.cc', 364 'sync/core_impl/sync_manager_impl.cc',
365 'internal_api/sync_manager_impl.h', 365 'sync/core_impl/sync_manager_impl.h',
366 'internal_api/syncapi_internal.cc', 366 'sync/core_impl/syncapi_internal.cc',
367 'internal_api/syncapi_internal.h', 367 'sync/core_impl/syncapi_internal.h',
368 'internal_api/syncapi_server_connection_manager.cc', 368 'sync/core_impl/syncapi_server_connection_manager.cc',
369 'internal_api/syncapi_server_connection_manager.h', 369 'sync/core_impl/syncapi_server_connection_manager.h',
370 'core/user_share.cc', 370 'sync/core/user_share.cc',
371 'core/write_node.cc', 371 'sync/core/write_node.cc',
372 'core/write_transaction.cc', 372 'sync/core/write_transaction.cc',
373 'js/js_backend.h', 373 'sync/js/js_backend.h',
374 'js/js_controller.h', 374 'sync/js/js_controller.h',
375 'js/js_event_details.cc', 375 'sync/js/js_event_details.cc',
376 'js/js_event_details.h', 376 'sync/js/js_event_details.h',
377 'js/js_event_handler.h', 377 'sync/js/js_event_handler.h',
378 'js/sync_js_controller.cc', 378 'sync/js/sync_js_controller.cc',
379 'js/sync_js_controller.h', 379 'sync/js/sync_js_controller.h',
380 'protocol/proto_enum_conversions.cc', 380 'sync/protocol/proto_enum_conversions.cc',
381 'protocol/proto_enum_conversions.h', 381 'sync/protocol/proto_enum_conversions.h',
382 'protocol/proto_value_conversions.cc', 382 'sync/protocol/proto_value_conversions.cc',
383 'protocol/proto_value_conversions.h', 383 'sync/protocol/proto_value_conversions.h',
384 'protocol/sync_protocol_error.cc', 384 'sync/protocol/sync_protocol_error.cc',
385 'protocol/sync_protocol_error.h', 385 'sync/protocol/sync_protocol_error.h',
386 'sessions_impl/data_type_tracker.cc', 386 'sync/sessions_impl/data_type_tracker.cc',
387 'sessions_impl/data_type_tracker.h', 387 'sync/sessions_impl/data_type_tracker.h',
388 'sessions_impl/debug_info_getter.h', 388 'sync/sessions_impl/debug_info_getter.h',
389 'sessions_impl/directory_type_debug_info_emitter.cc', 389 'sync/sessions_impl/directory_type_debug_info_emitter.cc',
390 'sessions_impl/directory_type_debug_info_emitter.h', 390 'sync/sessions_impl/directory_type_debug_info_emitter.h',
391 'sessions_impl/model_type_registry.cc', 391 'sync/sessions_impl/model_type_registry.cc',
392 'sessions_impl/model_type_registry.h', 392 'sync/sessions_impl/model_type_registry.h',
393 'sessions_impl/nudge_tracker.cc', 393 'sync/sessions_impl/nudge_tracker.cc',
394 'sessions_impl/nudge_tracker.h', 394 'sync/sessions_impl/nudge_tracker.h',
395 'sessions_impl/status_controller.cc', 395 'sync/sessions_impl/status_controller.cc',
396 'sessions_impl/status_controller.h', 396 'sync/sessions_impl/status_controller.h',
397 'sessions_impl/sync_session.cc', 397 'sync/sessions_impl/sync_session.cc',
398 'sessions_impl/sync_session.h', 398 'sync/sessions_impl/sync_session.h',
399 'sessions_impl/sync_session_context.cc', 399 'sync/sessions_impl/sync_session_context.cc',
400 'sessions_impl/sync_session_context.h', 400 'sync/sessions_impl/sync_session_context.h',
401 'syncable/dir_open_result.h', 401 'sync/syncable/dir_open_result.h',
402 'syncable/directory.cc', 402 'sync/syncable/directory.cc',
403 'syncable/directory.h', 403 'sync/syncable/directory.h',
404 'syncable/directory_backing_store.cc', 404 'sync/syncable/directory_backing_store.cc',
405 'syncable/directory_backing_store.h', 405 'sync/syncable/directory_backing_store.h',
406 'syncable/directory_change_delegate.h', 406 'sync/syncable/directory_change_delegate.h',
407 'syncable/entry.cc', 407 'sync/syncable/entry.cc',
408 'syncable/entry.h', 408 'sync/syncable/entry.h',
409 'syncable/entry_kernel.cc', 409 'sync/syncable/entry_kernel.cc',
410 'syncable/entry_kernel.h', 410 'sync/syncable/entry_kernel.h',
411 'syncable/in_memory_directory_backing_store.cc', 411 'sync/syncable/in_memory_directory_backing_store.cc',
412 'syncable/in_memory_directory_backing_store.h', 412 'sync/syncable/in_memory_directory_backing_store.h',
413 'syncable/invalid_directory_backing_store.cc', 413 'sync/syncable/invalid_directory_backing_store.cc',
414 'syncable/invalid_directory_backing_store.h', 414 'sync/syncable/invalid_directory_backing_store.h',
415 'syncable/metahandle_set.h', 415 'sync/syncable/metahandle_set.h',
416 'syncable/model_neutral_mutable_entry.cc', 416 'sync/syncable/model_neutral_mutable_entry.cc',
417 'syncable/model_neutral_mutable_entry.h', 417 'sync/syncable/model_neutral_mutable_entry.h',
418 'syncable/model_type.cc', 418 'sync/syncable/model_type.cc',
419 'syncable/mutable_entry.cc', 419 'sync/syncable/mutable_entry.cc',
420 'syncable/mutable_entry.h', 420 'sync/syncable/mutable_entry.h',
421 'syncable/nigori_handler.cc', 421 'sync/syncable/nigori_handler.cc',
422 'syncable/nigori_handler.h', 422 'sync/syncable/nigori_handler.h',
423 'syncable/nigori_util.cc', 423 'sync/syncable/nigori_util.cc',
424 'syncable/nigori_util.h', 424 'sync/syncable/nigori_util.h',
425 'syncable/on_disk_directory_backing_store.cc', 425 'sync/syncable/on_disk_directory_backing_store.cc',
426 'syncable/on_disk_directory_backing_store.h', 426 'sync/syncable/on_disk_directory_backing_store.h',
427 'syncable/parent_child_index.cc', 427 'sync/syncable/parent_child_index.cc',
428 'syncable/parent_child_index.h', 428 'sync/syncable/parent_child_index.h',
429 'syncable/scoped_kernel_lock.cc', 429 'sync/syncable/scoped_kernel_lock.cc',
430 'syncable/scoped_kernel_lock.h', 430 'sync/syncable/scoped_kernel_lock.h',
431 'syncable/scoped_parent_child_index_updater.cc', 431 'sync/syncable/scoped_parent_child_index_updater.cc',
432 'syncable/scoped_parent_child_index_updater.h', 432 'sync/syncable/scoped_parent_child_index_updater.h',
433 'syncable/syncable-inl.h', 433 'sync/syncable/syncable-inl.h',
434 'syncable/syncable_base_transaction.cc', 434 'sync/syncable/syncable_base_transaction.cc',
435 'syncable/syncable_base_transaction.h', 435 'sync/syncable/syncable_base_transaction.h',
436 'syncable/syncable_base_write_transaction.cc', 436 'sync/syncable/syncable_base_write_transaction.cc',
437 'syncable/syncable_base_write_transaction.h', 437 'sync/syncable/syncable_base_write_transaction.h',
438 'syncable/syncable_changes_version.h', 438 'sync/syncable/syncable_changes_version.h',
439 'syncable/syncable_columns.h', 439 'sync/syncable/syncable_columns.h',
440 'syncable/syncable_delete_journal.cc', 440 'sync/syncable/syncable_delete_journal.cc',
441 'syncable/syncable_delete_journal.h', 441 'sync/syncable/syncable_delete_journal.h',
442 'syncable/syncable_enum_conversions.cc', 442 'sync/syncable/syncable_enum_conversions.cc',
443 'syncable/syncable_enum_conversions.h', 443 'sync/syncable/syncable_enum_conversions.h',
444 'syncable/syncable_id.cc', 444 'sync/syncable/syncable_id.cc',
445 'syncable/syncable_id.h', 445 'sync/syncable/syncable_id.h',
446 'syncable/syncable_model_neutral_write_transaction.cc', 446 'sync/syncable/syncable_model_neutral_write_transaction.cc',
447 'syncable/syncable_model_neutral_write_transaction.h', 447 'sync/syncable/syncable_model_neutral_write_transaction.h',
448 'syncable/syncable_proto_util.cc', 448 'sync/syncable/syncable_proto_util.cc',
449 'syncable/syncable_proto_util.h', 449 'sync/syncable/syncable_proto_util.h',
450 'syncable/syncable_read_transaction.cc', 450 'sync/syncable/syncable_read_transaction.cc',
451 'syncable/syncable_read_transaction.h', 451 'sync/syncable/syncable_read_transaction.h',
452 'syncable/syncable_util.cc', 452 'sync/syncable/syncable_util.cc',
453 'syncable/syncable_util.h', 453 'sync/syncable/syncable_util.h',
454 'syncable/syncable_write_transaction.cc', 454 'sync/syncable/syncable_write_transaction.cc',
455 'syncable/syncable_write_transaction.h', 455 'sync/syncable/syncable_write_transaction.h',
456 'syncable/transaction_observer.h', 456 'sync/syncable/transaction_observer.h',
457 'syncable/write_transaction_info.cc', 457 'sync/syncable/write_transaction_info.cc',
458 'syncable/write_transaction_info.h', 458 'sync/syncable/write_transaction_info.h',
459 'base/cryptographer.cc', 459 'sync/base/cryptographer.cc',
460 'base/cryptographer.h', 460 'sync/base/cryptographer.h',
461 'base/data_type_histogram.cc', 461 'sync/base/data_type_histogram.cc',
462 'base/data_type_histogram.h', 462 'sync/base/data_type_histogram.h',
463 'base/encryptor.h', 463 'sync/base/encryptor.h',
464 'base/extensions_activity.cc', 464 'sync/base/extensions_activity.cc',
465 'base/extensions_activity.h', 465 'sync/base/extensions_activity.h',
466 'base/get_session_name.cc', 466 'sync/base/get_session_name.cc',
467 'base/get_session_name.h', 467 'sync/base/get_session_name.h',
468 'base/get_session_name_ios.h', 468 'sync/base/get_session_name_ios.h',
469 'base/get_session_name_ios.mm', 469 'sync/base/get_session_name_ios.mm',
470 'base/get_session_name_linux.cc', 470 'sync/base/get_session_name_linux.cc',
471 'base/get_session_name_linux.h', 471 'sync/base/get_session_name_linux.h',
472 'base/get_session_name_mac.h', 472 'sync/base/get_session_name_mac.h',
473 'base/get_session_name_mac.mm', 473 'sync/base/get_session_name_mac.mm',
474 'base/get_session_name_win.cc', 474 'sync/base/get_session_name_win.cc',
475 'base/get_session_name_win.h', 475 'sync/base/get_session_name_win.h',
476 'base/logging.cc', 476 'sync/base/logging.cc',
477 'base/logging.h', 477 'sync/base/logging.h',
478 'base/nigori.cc', 478 'sync/base/nigori.cc',
479 'base/nigori.h', 479 'sync/base/nigori.h',
480 'base/time.cc', 480 'sync/base/time.cc',
481 'base/time.h', 481 'sync/base/time.h',
482 ], 482 ],
483 483
484 'conditions': [ 484 'conditions': [
485 ['OS=="linux" and chromeos==1', { 485 ['OS=="linux" and chromeos==1', {
486 # Required by get_session_name.cc on Chrome OS. 486 # Required by get_session_name.cc on Chrome OS.
487 'dependencies': [ 487 'dependencies': [
488 '../chromeos/chromeos.gyp:chromeos', 488 '../chromeos/chromeos.gyp:chromeos',
489 ], 489 ],
490 }], 490 }],
491 ['OS=="mac"', { 491 ['OS=="mac"', {
492 'link_settings': { 492 'link_settings': {
493 'libraries': [ 493 'libraries': [
494 # Required by get_session_name_mac.mm on Mac. 494 # Required by get_session_name_mac.mm on Mac.
495 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framewor k', 495 '$(SDKROOT)/System/Library/Frameworks/SystemConfiguration.framewor k',
496 ] 496 ]
497 }, 497 },
498 }], 498 }],
499 ['OS=="android"', { 499 ['OS=="android"', {
500 'dependencies': [ 500 'dependencies': [
501 'sync_jni_headers', 501 'sync_jni_headers',
502 ], 502 ],
503 'sources': [ 503 'sources': [
504 'android/model_type_helper.cc', 504 'sync/android/model_type_helper.cc',
505 'android/model_type_helper.h', 505 'sync/android/model_type_helper.h',
506 'android/sync_jni_registrar.cc', 506 'sync/android/sync_jni_registrar.cc',
507 'android/sync_jni_registrar.h', 507 'sync/android/sync_jni_registrar.h',
508 ], 508 ],
509 }], 509 }],
510 ], 510 ],
511 }, 511 },
512 { 512 {
513 # Contains sync protobuf definitions. Do not depend on this directly. 513 # Contains sync protobuf definitions. Do not depend on this directly.
514 # Depend on the 'sync' target to get the relevant C++ code, too. 514 # Depend on the 'sync' target to get the relevant C++ code, too.
515 # 515 #
516 # GN version: //components/sync/protocol 516 # GN version: //components/sync/protocol
517 'target_name': 'sync_proto', 517 'target_name': 'sync_proto',
518 'type': '<(component)', 518 'type': '<(component)',
519 'include_dirs': [ 519 'include_dirs': [
520 '..', 520 '..',
521 ], 521 ],
522 'defines': [ 522 'defines': [
523 'SYNC_PROTO_IMPLEMENTATION', 523 'SYNC_PROTO_IMPLEMENTATION',
524 ], 524 ],
525 'sources': [ 525 'sources': [
526 # When adding a new proto source file, add its path to the list defined 526 # When adding a new proto source file, add its path to the list defined
527 # in sync/protocol/protocol.gypi. 527 # in sync/protocol/protocol.gypi.
528 '<@(sync_proto_sources)', 528 '<@(sync_proto_sources)',
529 ], 529 ],
530 'variables': { 530 'variables': {
531 'enable_wexit_time_destructors': 1, 531 'enable_wexit_time_destructors': 1,
532 'proto_in_dir': './protocol', 532 'proto_in_dir': './sync/protocol',
533 'proto_out_dir': 'sync/protocol', 533 'proto_out_dir': 'components/sync/protocol',
534 'cc_generator_options': 'dllexport_decl=SYNC_PROTO_EXPORT:', 534 'cc_generator_options': 'dllexport_decl=SYNC_PROTO_EXPORT:',
535 'cc_include': 'sync/protocol/sync_proto_export.h', 535 'cc_include': 'components/sync/protocol/sync_proto_export.h',
536 }, 536 },
537 'includes': [ 537 'includes': [
538 '../build/protoc.gypi' 538 '../build/protoc.gypi'
539 ], 539 ],
540 }, 540 },
541 { 541 {
542 # Contains attachment_store protobuf definitions. Do not depend on this 542 # Contains attachment_store protobuf definitions. Do not depend on this
543 # directly. 543 # directly.
544 # Depend on the 'sync' target to get the relevant C++ code, too. 544 # Depend on the 'sync' target to get the relevant C++ code, too.
545 # 545 #
546 # GN version: //components/sync/core_impl/attachments/proto 546 # GN version: //components/sync/core_impl/attachments/proto
547 'target_name': 'attachment_store_proto', 547 'target_name': 'attachment_store_proto',
548 'type': 'static_library', 548 'type': 'static_library',
549 'sources': [ 549 'sources': [
550 # NOTE: If you add a file to this list, also add it to 550 # NOTE: If you add a file to this list, also add it to
551 # sync/core_impl/attachments/proto/BUILD.gn 551 # sync/core_impl/attachments/proto/BUILD.gn
552 'internal_api/attachments/proto/attachment_store.proto', 552 'sync/core_impl/attachments/proto/attachment_store.proto',
553 ], 553 ],
554 'variables': { 554 'variables': {
555 'enable_wexit_time_destructors': 1, 555 'enable_wexit_time_destructors': 1,
556 'proto_in_dir': 'internal_api/attachments/proto', 556 'proto_in_dir': './sync/core_impl/attachments/proto',
557 'proto_out_dir': 'sync/core_impl/attachments/proto', 557 'proto_out_dir': 'components/sync/core_impl/attachments/proto',
558 'cc_generator_options': 'dllexport_decl=SYNC_EXPORT:', 558 'cc_generator_options': 'dllexport_decl=SYNC_EXPORT:',
559 'cc_include': 'sync/base/sync_export.h', 559 'cc_include': 'components/sync/base/sync_export.h',
560 }, 560 },
561 'includes': [ 561 'includes': [
562 '../build/protoc.gypi' 562 '../build/protoc.gypi'
563 ], 563 ],
564 'defines': [ 564 'defines': [
565 'SYNC_IMPLEMENTATION' 565 'SYNC_IMPLEMENTATION'
566 ], 566 ],
567 }, 567 },
568 ], 568 ],
569 } 569 }
OLDNEW
« no previous file with comments | « components/sessions/DEPS ('k') | components/sync/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698