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

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

Issue 2458013002: [Sync] Rename ModelTypeService to ModelTypeSyncBridge. (Closed)
Patch Set: s/SetBridgeError/ErrorOnNextCall Created 4 years, 1 month 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 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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 "model/entity_data.cc", 413 "model/entity_data.cc",
414 "model/entity_data.h", 414 "model/entity_data.h",
415 "model/local_change_observer.h", 415 "model/local_change_observer.h",
416 "model/metadata_batch.cc", 416 "model/metadata_batch.cc",
417 "model/metadata_batch.h", 417 "model/metadata_batch.h",
418 "model/metadata_change_list.h", 418 "model/metadata_change_list.h",
419 "model/model_type_change_processor.cc", 419 "model/model_type_change_processor.cc",
420 "model/model_type_change_processor.h", 420 "model/model_type_change_processor.h",
421 "model/model_type_debug_info.cc", 421 "model/model_type_debug_info.cc",
422 "model/model_type_debug_info.h", 422 "model/model_type_debug_info.h",
423 "model/model_type_service.cc",
424 "model/model_type_service.h",
425 "model/model_type_store.cc", 423 "model/model_type_store.cc",
426 "model/model_type_store.h", 424 "model/model_type_store.h",
425 "model/model_type_sync_bridge.cc",
426 "model/model_type_sync_bridge.h",
427 "model/mutable_data_batch.cc", 427 "model/mutable_data_batch.cc",
428 "model/mutable_data_batch.h", 428 "model/mutable_data_batch.h",
429 "model/simple_metadata_change_list.cc", 429 "model/simple_metadata_change_list.cc",
430 "model/simple_metadata_change_list.h", 430 "model/simple_metadata_change_list.h",
431 "model/string_ordinal.h", 431 "model/string_ordinal.h",
432 "model/sync_change.cc", 432 "model/sync_change.cc",
433 "model/sync_change.h", 433 "model/sync_change.h",
434 "model/sync_change_processor.cc", 434 "model/sync_change_processor.cc",
435 "model/sync_change_processor.h", 435 "model/sync_change_processor.h",
436 "model/sync_data.cc", 436 "model/sync_data.cc",
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 configs += [ "//build/config/compiler:wexit_time_destructors" ] 731 configs += [ "//build/config/compiler:wexit_time_destructors" ]
732 } 732 }
733 733
734 static_library("test_support_model") { 734 static_library("test_support_model") {
735 testonly = true 735 testonly = true
736 sources = [ 736 sources = [
737 "model/data_type_error_handler_mock.cc", 737 "model/data_type_error_handler_mock.cc",
738 "model/data_type_error_handler_mock.h", 738 "model/data_type_error_handler_mock.h",
739 "model/fake_model_type_change_processor.cc", 739 "model/fake_model_type_change_processor.cc",
740 "model/fake_model_type_change_processor.h", 740 "model/fake_model_type_change_processor.h",
741 "model/fake_model_type_service.cc", 741 "model/fake_model_type_sync_bridge.cc",
742 "model/fake_model_type_service.h", 742 "model/fake_model_type_sync_bridge.h",
743 "model/fake_sync_change_processor.cc", 743 "model/fake_sync_change_processor.cc",
744 "model/fake_sync_change_processor.h", 744 "model/fake_sync_change_processor.h",
745 "model/fake_syncable_service.cc", 745 "model/fake_syncable_service.cc",
746 "model/fake_syncable_service.h", 746 "model/fake_syncable_service.h",
747 "model/mock_model_type_store.cc", 747 "model/mock_model_type_store.cc",
748 "model/mock_model_type_store.h", 748 "model/mock_model_type_store.h",
749 "model/model_type_store_test_util.cc", 749 "model/model_type_store_test_util.cc",
750 "model/model_type_store_test_util.h", 750 "model/model_type_store_test_util.h",
751 "model/stub_model_type_service.cc", 751 "model/stub_model_type_sync_bridge.cc",
752 "model/stub_model_type_service.h", 752 "model/stub_model_type_sync_bridge.h",
753 "model/sync_change_processor_wrapper_for_test.cc", 753 "model/sync_change_processor_wrapper_for_test.cc",
754 "model/sync_change_processor_wrapper_for_test.h", 754 "model/sync_change_processor_wrapper_for_test.h",
755 "model/sync_error_factory_mock.cc", 755 "model/sync_error_factory_mock.cc",
756 "model/sync_error_factory_mock.h", 756 "model/sync_error_factory_mock.h",
757 ] 757 ]
758 758
759 defines = [ "SYNC_TEST" ] 759 defines = [ "SYNC_TEST" ]
760 760
761 public_deps = [ 761 public_deps = [
762 ":test_support_base", 762 ":test_support_base",
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 "engine_impl/syncer_unittest.cc", 887 "engine_impl/syncer_unittest.cc",
888 "engine_impl/syncer_util_unittest.cc", 888 "engine_impl/syncer_util_unittest.cc",
889 "engine_impl/worker_entity_tracker_unittest.cc", 889 "engine_impl/worker_entity_tracker_unittest.cc",
890 "js/js_event_details_unittest.cc", 890 "js/js_event_details_unittest.cc",
891 "js/sync_js_controller_unittest.cc", 891 "js/sync_js_controller_unittest.cc",
892 "model/attachments/attachment_id_unittest.cc", 892 "model/attachments/attachment_id_unittest.cc",
893 "model/attachments/attachment_metadata_unittest.cc", 893 "model/attachments/attachment_metadata_unittest.cc",
894 "model/attachments/attachment_service_proxy_unittest.cc", 894 "model/attachments/attachment_service_proxy_unittest.cc",
895 "model/attachments/attachment_unittest.cc", 895 "model/attachments/attachment_unittest.cc",
896 "model/entity_data_unittest.cc", 896 "model/entity_data_unittest.cc",
897 "model/model_type_service_unittest.cc", 897 "model/model_type_sync_bridge_unittest.cc",
898 "model/mutable_data_batch_unittest.cc", 898 "model/mutable_data_batch_unittest.cc",
899 "model/simple_metadata_change_list_unittest.cc", 899 "model/simple_metadata_change_list_unittest.cc",
900 "model/sync_change_unittest.cc", 900 "model/sync_change_unittest.cc",
901 "model/sync_data_unittest.cc", 901 "model/sync_data_unittest.cc",
902 "model/sync_error_unittest.cc", 902 "model/sync_error_unittest.cc",
903 "model/sync_merge_result_unittest.cc", 903 "model/sync_merge_result_unittest.cc",
904 "model_impl/attachments/attachment_service_impl_unittest.cc", 904 "model_impl/attachments/attachment_service_impl_unittest.cc",
905 "model_impl/attachments/task_queue_unittest.cc", 905 "model_impl/attachments/task_queue_unittest.cc",
906 "model_impl/model_type_store_backend_unittest.cc", 906 "model_impl/model_type_store_backend_unittest.cc",
907 "model_impl/model_type_store_impl_unittest.cc", 907 "model_impl/model_type_store_impl_unittest.cc",
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 deps = [ 1124 deps = [
1125 ":fake_server_jni", 1125 ":fake_server_jni",
1126 ":sync", 1126 ":sync",
1127 ":test_support_fake_server", 1127 ":test_support_fake_server",
1128 "//base", 1128 "//base",
1129 "//testing/gtest", 1129 "//testing/gtest",
1130 "//url:url", 1130 "//url:url",
1131 ] 1131 ]
1132 } 1132 }
1133 } 1133 }
OLDNEW
« no previous file with comments | « components/browser_sync/profile_sync_service.cc ('k') | components/sync/device_info/device_info_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698