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

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

Issue 2470953002: [Sync] Adding a passthrough MetadataChangeList implementation. (Closed)
Patch Set: Last update for Max. 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
« no previous file with comments | « no previous file | components/sync/model/simple_metadata_change_list.h » ('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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
446 "model/syncable_service.cc", 446 "model/syncable_service.cc",
447 "model/syncable_service.h", 447 "model/syncable_service.h",
448 "model/time.h", 448 "model/time.h",
449 "model_impl/attachments/attachment_service_impl.cc", 449 "model_impl/attachments/attachment_service_impl.cc",
450 "model_impl/attachments/attachment_service_impl.h", 450 "model_impl/attachments/attachment_service_impl.h",
451 "model_impl/attachments/task_queue.h", 451 "model_impl/attachments/task_queue.h",
452 "model_impl/model_type_store_backend.cc", 452 "model_impl/model_type_store_backend.cc",
453 "model_impl/model_type_store_backend.h", 453 "model_impl/model_type_store_backend.h",
454 "model_impl/model_type_store_impl.cc", 454 "model_impl/model_type_store_impl.cc",
455 "model_impl/model_type_store_impl.h", 455 "model_impl/model_type_store_impl.h",
456 "model_impl/passthrough_metadata_change_list.cc",
457 "model_impl/passthrough_metadata_change_list.h",
456 "model_impl/processor_entity_tracker.cc", 458 "model_impl/processor_entity_tracker.cc",
457 "model_impl/processor_entity_tracker.h", 459 "model_impl/processor_entity_tracker.h",
458 "model_impl/shared_model_type_processor.cc", 460 "model_impl/shared_model_type_processor.cc",
459 "model_impl/shared_model_type_processor.h", 461 "model_impl/shared_model_type_processor.h",
460 "protocol/proto_enum_conversions.cc", 462 "protocol/proto_enum_conversions.cc",
461 "protocol/proto_enum_conversions.h", 463 "protocol/proto_enum_conversions.h",
462 "protocol/proto_value_conversions.cc", 464 "protocol/proto_value_conversions.cc",
463 "protocol/proto_value_conversions.h", 465 "protocol/proto_value_conversions.h",
464 "protocol/proto_visitors.h", 466 "protocol/proto_visitors.h",
465 "protocol/sync_protocol_error.cc", 467 "protocol/sync_protocol_error.cc",
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 "model/mutable_data_batch_unittest.cc", 903 "model/mutable_data_batch_unittest.cc",
902 "model/simple_metadata_change_list_unittest.cc", 904 "model/simple_metadata_change_list_unittest.cc",
903 "model/sync_change_unittest.cc", 905 "model/sync_change_unittest.cc",
904 "model/sync_data_unittest.cc", 906 "model/sync_data_unittest.cc",
905 "model/sync_error_unittest.cc", 907 "model/sync_error_unittest.cc",
906 "model/sync_merge_result_unittest.cc", 908 "model/sync_merge_result_unittest.cc",
907 "model_impl/attachments/attachment_service_impl_unittest.cc", 909 "model_impl/attachments/attachment_service_impl_unittest.cc",
908 "model_impl/attachments/task_queue_unittest.cc", 910 "model_impl/attachments/task_queue_unittest.cc",
909 "model_impl/model_type_store_backend_unittest.cc", 911 "model_impl/model_type_store_backend_unittest.cc",
910 "model_impl/model_type_store_impl_unittest.cc", 912 "model_impl/model_type_store_impl_unittest.cc",
913 "model_impl/passthrough_metadata_change_list_unittest.cc",
911 "model_impl/processor_entity_tracker_unittest.cc", 914 "model_impl/processor_entity_tracker_unittest.cc",
912 "model_impl/shared_model_type_processor_unittest.cc", 915 "model_impl/shared_model_type_processor_unittest.cc",
913 "protocol/proto_enum_conversions_unittest.cc", 916 "protocol/proto_enum_conversions_unittest.cc",
914 "protocol/proto_value_conversions_unittest.cc", 917 "protocol/proto_value_conversions_unittest.cc",
915 "syncable/change_record_unittest.cc", 918 "syncable/change_record_unittest.cc",
916 "syncable/directory_backing_store_unittest.cc", 919 "syncable/directory_backing_store_unittest.cc",
917 "syncable/directory_unittest.cc", 920 "syncable/directory_unittest.cc",
918 "syncable/directory_unittest.h", 921 "syncable/directory_unittest.h",
919 "syncable/entry_kernel_unittest.cc", 922 "syncable/entry_kernel_unittest.cc",
920 "syncable/model_type_unittest.cc", 923 "syncable/model_type_unittest.cc",
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 deps = [ 1131 deps = [
1129 ":fake_server_jni", 1132 ":fake_server_jni",
1130 ":sync", 1133 ":sync",
1131 ":test_support_fake_server", 1134 ":test_support_fake_server",
1132 "//base", 1135 "//base",
1133 "//testing/gtest", 1136 "//testing/gtest",
1134 "//url:url", 1137 "//url:url",
1135 ] 1138 ]
1136 } 1139 }
1137 } 1140 }
OLDNEW
« no previous file with comments | « no previous file | components/sync/model/simple_metadata_change_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698