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

Side by Side Diff: sync/sync.gyp

Issue 1382743004: [Sync] Move ModelTypeProcessor* and rename *Impl to Shared*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: also the test Created 5 years, 2 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
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': 'protocol',
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 'engine/entity_tracker.cc', 128 'engine/entity_tracker.cc',
129 'engine/entity_tracker.h', 129 'engine/entity_tracker.h',
130 'engine/get_commit_ids.cc', 130 'engine/get_commit_ids.cc',
131 'engine/get_commit_ids.h', 131 'engine/get_commit_ids.h',
132 'engine/get_updates_delegate.cc', 132 'engine/get_updates_delegate.cc',
133 'engine/get_updates_delegate.h', 133 'engine/get_updates_delegate.h',
134 'engine/get_updates_processor.cc', 134 'engine/get_updates_processor.cc',
135 'engine/get_updates_processor.h', 135 'engine/get_updates_processor.h',
136 'engine/model_type_entity.cc', 136 'engine/model_type_entity.cc',
137 'engine/model_type_entity.h', 137 'engine/model_type_entity.h',
138 'engine/model_type_processor.cc',
139 'engine/model_type_processor.h',
140 'engine/model_type_processor_impl.cc',
141 'engine/model_type_processor_impl.h',
142 'engine/model_type_worker.cc', 138 'engine/model_type_worker.cc',
143 'engine/model_type_worker.h', 139 'engine/model_type_worker.h',
144 'engine/net/server_connection_manager.cc', 140 'engine/net/server_connection_manager.cc',
145 'engine/net/server_connection_manager.h', 141 'engine/net/server_connection_manager.h',
146 'engine/net/url_translator.cc', 142 'engine/net/url_translator.cc',
147 'engine/net/url_translator.h', 143 'engine/net/url_translator.h',
148 'engine/non_blocking_type_commit_contribution.cc', 144 'engine/non_blocking_type_commit_contribution.cc',
149 'engine/non_blocking_type_commit_contribution.h', 145 'engine/non_blocking_type_commit_contribution.h',
150 'engine/nudge_handler.cc', 146 'engine/nudge_handler.cc',
151 'engine/nudge_handler.h', 147 'engine/nudge_handler.h',
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 'internal_api/public/events/get_updates_response_event.h', 274 'internal_api/public/events/get_updates_response_event.h',
279 'internal_api/public/events/normal_get_updates_request_event.h', 275 'internal_api/public/events/normal_get_updates_request_event.h',
280 'internal_api/public/events/poll_get_updates_request_event.h', 276 'internal_api/public/events/poll_get_updates_request_event.h',
281 'internal_api/public/events/protocol_event.h', 277 'internal_api/public/events/protocol_event.h',
282 'internal_api/public/http_bridge.h', 278 'internal_api/public/http_bridge.h',
283 'internal_api/public/http_bridge_network_resources.h', 279 'internal_api/public/http_bridge_network_resources.h',
284 'internal_api/public/http_post_provider_factory.h', 280 'internal_api/public/http_post_provider_factory.h',
285 'internal_api/public/http_post_provider_interface.h', 281 'internal_api/public/http_post_provider_interface.h',
286 'internal_api/public/internal_components_factory.h', 282 'internal_api/public/internal_components_factory.h',
287 'internal_api/public/internal_components_factory_impl.h', 283 'internal_api/public/internal_components_factory_impl.h',
284 'internal_api/public/model_type_processor.cc',
285 'internal_api/public/model_type_processor.h',
288 'internal_api/public/network_resources.h', 286 'internal_api/public/network_resources.h',
289 'internal_api/public/non_blocking_sync_common.cc', 287 'internal_api/public/non_blocking_sync_common.cc',
290 'internal_api/public/non_blocking_sync_common.h', 288 'internal_api/public/non_blocking_sync_common.h',
291 'internal_api/public/read_node.h', 289 'internal_api/public/read_node.h',
292 'internal_api/public/read_transaction.h', 290 'internal_api/public/read_transaction.h',
293 'internal_api/public/sessions/commit_counters.cc', 291 'internal_api/public/sessions/commit_counters.cc',
294 'internal_api/public/sessions/commit_counters.h', 292 'internal_api/public/sessions/commit_counters.h',
295 'internal_api/public/sessions/model_neutral_state.cc', 293 'internal_api/public/sessions/model_neutral_state.cc',
296 'internal_api/public/sessions/model_neutral_state.h', 294 'internal_api/public/sessions/model_neutral_state.h',
297 'internal_api/public/sessions/status_counters.cc', 295 'internal_api/public/sessions/status_counters.cc',
298 'internal_api/public/sessions/status_counters.h', 296 'internal_api/public/sessions/status_counters.h',
299 'internal_api/public/sessions/sync_session_snapshot.cc', 297 'internal_api/public/sessions/sync_session_snapshot.cc',
300 'internal_api/public/sessions/sync_session_snapshot.h', 298 'internal_api/public/sessions/sync_session_snapshot.h',
301 'internal_api/public/sessions/type_debug_info_observer.cc', 299 'internal_api/public/sessions/type_debug_info_observer.cc',
302 'internal_api/public/sessions/type_debug_info_observer.h', 300 'internal_api/public/sessions/type_debug_info_observer.h',
303 'internal_api/public/sessions/update_counters.cc', 301 'internal_api/public/sessions/update_counters.cc',
304 'internal_api/public/sessions/update_counters.h', 302 'internal_api/public/sessions/update_counters.h',
303 'internal_api/public/shared_model_type_processor.h',
305 'internal_api/public/shutdown_reason.h', 304 'internal_api/public/shutdown_reason.h',
306 'internal_api/public/sync_auth_provider.h', 305 'internal_api/public/sync_auth_provider.h',
307 'internal_api/public/sync_context.h', 306 'internal_api/public/sync_context.h',
308 'internal_api/public/sync_context_proxy.h', 307 'internal_api/public/sync_context_proxy.h',
309 'internal_api/public/sync_encryption_handler.cc', 308 'internal_api/public/sync_encryption_handler.cc',
310 'internal_api/public/sync_encryption_handler.h', 309 'internal_api/public/sync_encryption_handler.h',
311 'internal_api/public/sync_manager.cc', 310 'internal_api/public/sync_manager.cc',
312 'internal_api/public/sync_manager.h', 311 'internal_api/public/sync_manager.h',
313 'internal_api/public/sync_manager_factory.h', 312 'internal_api/public/sync_manager_factory.h',
314 'internal_api/public/user_share.h', 313 'internal_api/public/user_share.h',
315 'internal_api/public/util/experiments.h', 314 'internal_api/public/util/experiments.h',
316 'internal_api/public/util/immutable.h', 315 'internal_api/public/util/immutable.h',
317 'internal_api/public/util/sync_db_util.h', 316 'internal_api/public/util/sync_db_util.h',
318 'internal_api/public/util/sync_string_conversions.cc', 317 'internal_api/public/util/sync_string_conversions.cc',
319 'internal_api/public/util/sync_string_conversions.h', 318 'internal_api/public/util/sync_string_conversions.h',
320 'internal_api/public/util/syncer_error.cc', 319 'internal_api/public/util/syncer_error.cc',
321 'internal_api/public/util/syncer_error.h', 320 'internal_api/public/util/syncer_error.h',
322 'internal_api/public/util/unrecoverable_error_handler.h', 321 'internal_api/public/util/unrecoverable_error_handler.h',
323 'internal_api/public/util/unrecoverable_error_info.cc', 322 'internal_api/public/util/unrecoverable_error_info.cc',
324 'internal_api/public/util/unrecoverable_error_info.h', 323 'internal_api/public/util/unrecoverable_error_info.h',
325 'internal_api/public/util/weak_handle.cc', 324 'internal_api/public/util/weak_handle.cc',
326 'internal_api/public/util/weak_handle.h', 325 'internal_api/public/util/weak_handle.h',
327 'internal_api/public/write_node.h', 326 'internal_api/public/write_node.h',
328 'internal_api/public/write_transaction.h', 327 'internal_api/public/write_transaction.h',
329 'internal_api/read_node.cc', 328 'internal_api/read_node.cc',
330 'internal_api/read_transaction.cc', 329 'internal_api/read_transaction.cc',
330 'internal_api/shared_model_type_processor.cc',
331 'internal_api/sync_backup_manager.cc', 331 'internal_api/sync_backup_manager.cc',
332 'internal_api/sync_backup_manager.h', 332 'internal_api/sync_backup_manager.h',
333 'internal_api/sync_context.cc', 333 'internal_api/sync_context.cc',
334 'internal_api/sync_context_proxy.cc', 334 'internal_api/sync_context_proxy.cc',
335 'internal_api/sync_context_proxy_impl.cc', 335 'internal_api/sync_context_proxy_impl.cc',
336 'internal_api/sync_context_proxy_impl.h', 336 'internal_api/sync_context_proxy_impl.h',
337 'internal_api/sync_db_util.cc', 337 'internal_api/sync_db_util.cc',
338 'internal_api/sync_encryption_handler_impl.cc', 338 'internal_api/sync_encryption_handler_impl.cc',
339 'internal_api/sync_encryption_handler_impl.h', 339 'internal_api/sync_encryption_handler_impl.h',
340 'internal_api/sync_manager_factory.cc', 340 'internal_api/sync_manager_factory.cc',
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 }, 544 },
545 'includes': [ 545 'includes': [
546 '../build/protoc.gypi' 546 '../build/protoc.gypi'
547 ], 547 ],
548 'defines': [ 548 'defines': [
549 'SYNC_IMPLEMENTATION' 549 'SYNC_IMPLEMENTATION'
550 ], 550 ],
551 }, 551 },
552 ], 552 ],
553 } 553 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698