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

Side by Side Diff: components/sync/BUILD.gn

Issue 2258873003: [Sync] Move sessions/ to engine/cycle/ and rename things to match. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. 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/browser_sync/browser/profile_sync_service_mock.h ('k') | components/sync/core/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 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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//components/sync/protocol/protocol_sources.gni") 7 import("//components/sync/protocol/protocol_sources.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 static_library("sync") { 10 static_library("sync") {
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 "driver/sync_util.h", 325 "driver/sync_util.h",
326 "driver/system_encryptor.cc", 326 "driver/system_encryptor.cc",
327 "driver/system_encryptor.h", 327 "driver/system_encryptor.h",
328 "driver/ui_data_type_controller.cc", 328 "driver/ui_data_type_controller.cc",
329 "driver/ui_data_type_controller.h", 329 "driver/ui_data_type_controller.h",
330 "driver/ui_model_type_controller.cc", 330 "driver/ui_model_type_controller.cc",
331 "driver/ui_model_type_controller.h", 331 "driver/ui_model_type_controller.h",
332 "driver/user_selectable_sync_type.h", 332 "driver/user_selectable_sync_type.h",
333 "engine/commit_queue.cc", 333 "engine/commit_queue.cc",
334 "engine/commit_queue.h", 334 "engine/commit_queue.h",
335 "engine/cycle/commit_counters.cc",
336 "engine/cycle/commit_counters.h",
337 "engine/cycle/model_neutral_state.cc",
338 "engine/cycle/model_neutral_state.h",
339 "engine/cycle/status_counters.cc",
340 "engine/cycle/status_counters.h",
341 "engine/cycle/sync_cycle_snapshot.cc",
342 "engine/cycle/sync_cycle_snapshot.h",
343 "engine/cycle/type_debug_info_observer.cc",
344 "engine/cycle/type_debug_info_observer.h",
345 "engine/cycle/update_counters.cc",
346 "engine/cycle/update_counters.h",
335 "engine/events/clear_server_data_request_event.cc", 347 "engine/events/clear_server_data_request_event.cc",
336 "engine/events/clear_server_data_request_event.h", 348 "engine/events/clear_server_data_request_event.h",
337 "engine/events/clear_server_data_response_event.cc", 349 "engine/events/clear_server_data_response_event.cc",
338 "engine/events/clear_server_data_response_event.h", 350 "engine/events/clear_server_data_response_event.h",
339 "engine/events/commit_request_event.cc", 351 "engine/events/commit_request_event.cc",
340 "engine/events/commit_request_event.h", 352 "engine/events/commit_request_event.h",
341 "engine/events/commit_response_event.cc", 353 "engine/events/commit_response_event.cc",
342 "engine/events/commit_response_event.h", 354 "engine/events/commit_response_event.h",
343 "engine/events/configure_get_updates_request_event.cc", 355 "engine/events/configure_get_updates_request_event.cc",
344 "engine/events/configure_get_updates_request_event.h", 356 "engine/events/configure_get_updates_request_event.h",
(...skipping 30 matching lines...) Expand all
375 "engine_impl/commit_contributor.cc", 387 "engine_impl/commit_contributor.cc",
376 "engine_impl/commit_contributor.h", 388 "engine_impl/commit_contributor.h",
377 "engine_impl/commit_processor.cc", 389 "engine_impl/commit_processor.cc",
378 "engine_impl/commit_processor.h", 390 "engine_impl/commit_processor.h",
379 "engine_impl/commit_util.cc", 391 "engine_impl/commit_util.cc",
380 "engine_impl/commit_util.h", 392 "engine_impl/commit_util.h",
381 "engine_impl/conflict_resolver.cc", 393 "engine_impl/conflict_resolver.cc",
382 "engine_impl/conflict_resolver.h", 394 "engine_impl/conflict_resolver.h",
383 "engine_impl/conflict_util.cc", 395 "engine_impl/conflict_util.cc",
384 "engine_impl/conflict_util.h", 396 "engine_impl/conflict_util.h",
397 "engine_impl/cycle/data_type_tracker.cc",
398 "engine_impl/cycle/data_type_tracker.h",
399 "engine_impl/cycle/debug_info_getter.h",
400 "engine_impl/cycle/directory_type_debug_info_emitter.cc",
401 "engine_impl/cycle/directory_type_debug_info_emitter.h",
402 "engine_impl/cycle/nudge_tracker.cc",
403 "engine_impl/cycle/nudge_tracker.h",
404 "engine_impl/cycle/status_controller.cc",
405 "engine_impl/cycle/status_controller.h",
406 "engine_impl/cycle/sync_cycle.cc",
407 "engine_impl/cycle/sync_cycle.h",
408 "engine_impl/cycle/sync_cycle_context.cc",
409 "engine_impl/cycle/sync_cycle_context.h",
385 "engine_impl/directory_commit_contribution.cc", 410 "engine_impl/directory_commit_contribution.cc",
386 "engine_impl/directory_commit_contribution.h", 411 "engine_impl/directory_commit_contribution.h",
387 "engine_impl/directory_commit_contributor.cc", 412 "engine_impl/directory_commit_contributor.cc",
388 "engine_impl/directory_commit_contributor.h", 413 "engine_impl/directory_commit_contributor.h",
389 "engine_impl/directory_update_handler.cc", 414 "engine_impl/directory_update_handler.cc",
390 "engine_impl/directory_update_handler.h", 415 "engine_impl/directory_update_handler.h",
391 "engine_impl/get_commit_ids.cc", 416 "engine_impl/get_commit_ids.cc",
392 "engine_impl/get_commit_ids.h", 417 "engine_impl/get_commit_ids.h",
393 "engine_impl/get_updates_delegate.cc", 418 "engine_impl/get_updates_delegate.cc",
394 "engine_impl/get_updates_delegate.h", 419 "engine_impl/get_updates_delegate.h",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 "js/js_event_details.h", 464 "js/js_event_details.h",
440 "js/js_event_handler.h", 465 "js/js_event_handler.h",
441 "js/sync_js_controller.cc", 466 "js/sync_js_controller.cc",
442 "js/sync_js_controller.h", 467 "js/sync_js_controller.h",
443 "protocol/proto_enum_conversions.cc", 468 "protocol/proto_enum_conversions.cc",
444 "protocol/proto_enum_conversions.h", 469 "protocol/proto_enum_conversions.h",
445 "protocol/proto_value_conversions.cc", 470 "protocol/proto_value_conversions.cc",
446 "protocol/proto_value_conversions.h", 471 "protocol/proto_value_conversions.h",
447 "protocol/sync_protocol_error.cc", 472 "protocol/sync_protocol_error.cc",
448 "protocol/sync_protocol_error.h", 473 "protocol/sync_protocol_error.h",
449 "sessions/commit_counters.cc",
450 "sessions/commit_counters.h",
451 "sessions/model_neutral_state.cc",
452 "sessions/model_neutral_state.h",
453 "sessions/status_counters.cc",
454 "sessions/status_counters.h",
455 "sessions/sync_session_snapshot.cc",
456 "sessions/sync_session_snapshot.h",
457 "sessions/type_debug_info_observer.cc",
458 "sessions/type_debug_info_observer.h",
459 "sessions/update_counters.cc",
460 "sessions/update_counters.h",
461 "sessions_impl/data_type_tracker.cc",
462 "sessions_impl/data_type_tracker.h",
463 "sessions_impl/debug_info_getter.h",
464 "sessions_impl/directory_type_debug_info_emitter.cc",
465 "sessions_impl/directory_type_debug_info_emitter.h",
466 "sessions_impl/nudge_tracker.cc",
467 "sessions_impl/nudge_tracker.h",
468 "sessions_impl/status_controller.cc",
469 "sessions_impl/status_controller.h",
470 "sessions_impl/sync_session.cc",
471 "sessions_impl/sync_session.h",
472 "sessions_impl/sync_session_context.cc",
473 "sessions_impl/sync_session_context.h",
474 "syncable/dir_open_result.h", 474 "syncable/dir_open_result.h",
475 "syncable/directory.cc", 475 "syncable/directory.cc",
476 "syncable/directory.h", 476 "syncable/directory.h",
477 "syncable/directory_backing_store.cc", 477 "syncable/directory_backing_store.cc",
478 "syncable/directory_backing_store.h", 478 "syncable/directory_backing_store.h",
479 "syncable/directory_change_delegate.h", 479 "syncable/directory_change_delegate.h",
480 "syncable/entry.cc", 480 "syncable/entry.cc",
481 "syncable/entry.h", 481 "syncable/entry.h",
482 "syncable/entry_kernel.cc", 482 "syncable/entry_kernel.cc",
483 "syncable/entry_kernel.h", 483 "syncable/entry_kernel.h",
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 testonly = true 600 testonly = true
601 sources = [ 601 sources = [
602 "base/fake_encryptor.cc", 602 "base/fake_encryptor.cc",
603 "base/fake_encryptor.h", 603 "base/fake_encryptor.h",
604 "base/mock_unrecoverable_error_handler.cc", 604 "base/mock_unrecoverable_error_handler.cc",
605 "base/mock_unrecoverable_error_handler.h", 605 "base/mock_unrecoverable_error_handler.h",
606 "base/model_type_test_util.cc", 606 "base/model_type_test_util.cc",
607 "base/model_type_test_util.h", 607 "base/model_type_test_util.h",
608 "base/test_unrecoverable_error_handler.cc", 608 "base/test_unrecoverable_error_handler.cc",
609 "base/test_unrecoverable_error_handler.h", 609 "base/test_unrecoverable_error_handler.h",
610 "engine_impl/cycle/mock_debug_info_getter.cc",
611 "engine_impl/cycle/mock_debug_info_getter.h",
612 "engine_impl/cycle/test_util.cc",
613 "engine_impl/cycle/test_util.h",
610 "js/js_test_util.cc", 614 "js/js_test_util.cc",
611 "js/js_test_util.h", 615 "js/js_test_util.h",
612 "sessions_impl/test_util.cc",
613 "sessions_impl/test_util.h",
614 "test/callback_counter.h", 616 "test/callback_counter.h",
615 "test/directory_backing_store_corruption_testing.cc", 617 "test/directory_backing_store_corruption_testing.cc",
616 "test/directory_backing_store_corruption_testing.h", 618 "test/directory_backing_store_corruption_testing.h",
617 "test/engine/fake_model_worker.cc", 619 "test/engine/fake_model_worker.cc",
618 "test/engine/fake_model_worker.h", 620 "test/engine/fake_model_worker.h",
619 "test/engine/fake_sync_scheduler.cc", 621 "test/engine/fake_sync_scheduler.cc",
620 "test/engine/fake_sync_scheduler.h", 622 "test/engine/fake_sync_scheduler.h",
621 "test/engine/mock_connection_manager.cc", 623 "test/engine/mock_connection_manager.cc",
622 "test/engine/mock_connection_manager.h", 624 "test/engine/mock_connection_manager.h",
623 "test/engine/mock_model_type_processor.cc", 625 "test/engine/mock_model_type_processor.cc",
(...skipping 14 matching lines...) Expand all
638 "test/fake_sync_encryption_handler.cc", 640 "test/fake_sync_encryption_handler.cc",
639 "test/fake_sync_encryption_handler.h", 641 "test/fake_sync_encryption_handler.h",
640 "test/mock_invalidation.cc", 642 "test/mock_invalidation.cc",
641 "test/mock_invalidation.h", 643 "test/mock_invalidation.h",
642 "test/mock_invalidation_tracker.cc", 644 "test/mock_invalidation_tracker.cc",
643 "test/mock_invalidation_tracker.h", 645 "test/mock_invalidation_tracker.h",
644 "test/null_directory_change_delegate.cc", 646 "test/null_directory_change_delegate.cc",
645 "test/null_directory_change_delegate.h", 647 "test/null_directory_change_delegate.h",
646 "test/null_transaction_observer.cc", 648 "test/null_transaction_observer.cc",
647 "test/null_transaction_observer.h", 649 "test/null_transaction_observer.h",
648 "test/sessions/mock_debug_info_getter.cc",
649 "test/sessions/mock_debug_info_getter.h",
650 "test/sessions/test_scoped_session_event_listener.h",
651 "test/test_directory_backing_store.cc", 650 "test/test_directory_backing_store.cc",
652 "test/test_directory_backing_store.h", 651 "test/test_directory_backing_store.h",
653 "test/test_transaction_observer.cc", 652 "test/test_transaction_observer.cc",
654 "test/test_transaction_observer.h", 653 "test/test_transaction_observer.h",
655 "test/trackable_mock_invalidation.cc", 654 "test/trackable_mock_invalidation.cc",
656 "test/trackable_mock_invalidation.h", 655 "test/trackable_mock_invalidation.h",
657 ] 656 ]
658 657
659 public_deps = [ 658 public_deps = [
660 "//base", 659 "//base",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
853 "driver/non_ui_data_type_controller_unittest.cc", 852 "driver/non_ui_data_type_controller_unittest.cc",
854 "driver/non_ui_model_type_controller_unittest.cc", 853 "driver/non_ui_model_type_controller_unittest.cc",
855 "driver/shared_change_processor_unittest.cc", 854 "driver/shared_change_processor_unittest.cc",
856 "driver/startup_controller_unittest.cc", 855 "driver/startup_controller_unittest.cc",
857 "driver/sync_prefs_unittest.cc", 856 "driver/sync_prefs_unittest.cc",
858 "driver/sync_stopped_reporter_unittest.cc", 857 "driver/sync_stopped_reporter_unittest.cc",
859 "driver/sync_util_unittest.cc", 858 "driver/sync_util_unittest.cc",
860 "driver/system_encryptor_unittest.cc", 859 "driver/system_encryptor_unittest.cc",
861 "driver/ui_data_type_controller_unittest.cc", 860 "driver/ui_data_type_controller_unittest.cc",
862 "driver/ui_model_type_controller_unittest.cc", 861 "driver/ui_model_type_controller_unittest.cc",
862 "engine/cycle/sync_cycle_snapshot_unittest.cc",
863 "engine/model_safe_worker_unittest.cc", 863 "engine/model_safe_worker_unittest.cc",
864 "engine_impl/apply_control_data_updates_unittest.cc", 864 "engine_impl/apply_control_data_updates_unittest.cc",
865 "engine_impl/backoff_delay_provider_unittest.cc", 865 "engine_impl/backoff_delay_provider_unittest.cc",
866 "engine_impl/cycle/nudge_tracker_unittest.cc",
867 "engine_impl/cycle/status_controller_unittest.cc",
866 "engine_impl/directory_commit_contribution_unittest.cc", 868 "engine_impl/directory_commit_contribution_unittest.cc",
867 "engine_impl/directory_update_handler_unittest.cc", 869 "engine_impl/directory_update_handler_unittest.cc",
868 "engine_impl/get_updates_processor_unittest.cc", 870 "engine_impl/get_updates_processor_unittest.cc",
869 "engine_impl/model_type_registry_unittest.cc", 871 "engine_impl/model_type_registry_unittest.cc",
870 "engine_impl/model_type_worker_unittest.cc", 872 "engine_impl/model_type_worker_unittest.cc",
871 "engine_impl/sync_scheduler_unittest.cc", 873 "engine_impl/sync_scheduler_unittest.cc",
872 "engine_impl/syncer_proto_util_unittest.cc", 874 "engine_impl/syncer_proto_util_unittest.cc",
873 "engine_impl/syncer_unittest.cc", 875 "engine_impl/syncer_unittest.cc",
874 "engine_impl/syncer_util_unittest.cc", 876 "engine_impl/syncer_util_unittest.cc",
875 "engine_impl/worker_entity_tracker_unittest.cc", 877 "engine_impl/worker_entity_tracker_unittest.cc",
876 "js/js_event_details_unittest.cc", 878 "js/js_event_details_unittest.cc",
877 "js/sync_js_controller_unittest.cc", 879 "js/sync_js_controller_unittest.cc",
878 "protocol/proto_enum_conversions_unittest.cc", 880 "protocol/proto_enum_conversions_unittest.cc",
879 "protocol/proto_value_conversions_unittest.cc", 881 "protocol/proto_value_conversions_unittest.cc",
880 "sessions/sync_session_snapshot_unittest.cc",
881 "sessions_impl/nudge_tracker_unittest.cc",
882 "sessions_impl/status_controller_unittest.cc",
883 "syncable/directory_backing_store_unittest.cc", 882 "syncable/directory_backing_store_unittest.cc",
884 "syncable/directory_unittest.cc", 883 "syncable/directory_unittest.cc",
885 "syncable/directory_unittest.h", 884 "syncable/directory_unittest.h",
886 "syncable/entry_kernel_unittest.cc", 885 "syncable/entry_kernel_unittest.cc",
887 "syncable/model_type_unittest.cc", 886 "syncable/model_type_unittest.cc",
888 "syncable/nigori_util_unittest.cc", 887 "syncable/nigori_util_unittest.cc",
889 "syncable/parent_child_index_unittest.cc", 888 "syncable/parent_child_index_unittest.cc",
890 "syncable/syncable_enum_conversions_unittest.cc", 889 "syncable/syncable_enum_conversions_unittest.cc",
891 "syncable/syncable_id_unittest.cc", 890 "syncable/syncable_id_unittest.cc",
892 "syncable/syncable_unittest.cc", 891 "syncable/syncable_unittest.cc",
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 deps = [ 1102 deps = [
1104 ":fake_server_jni", 1103 ":fake_server_jni",
1105 ":sync", 1104 ":sync",
1106 ":test_support_sync_fake_server", 1105 ":test_support_sync_fake_server",
1107 "//base", 1106 "//base",
1108 "//testing/gtest", 1107 "//testing/gtest",
1109 "//url:url", 1108 "//url:url",
1110 ] 1109 ]
1111 } 1110 }
1112 } 1111 }
OLDNEW
« no previous file with comments | « components/browser_sync/browser/profile_sync_service_mock.h ('k') | components/sync/core/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698