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

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

Issue 2433563002: [Sync] Reimplement proto value conversions on top of field visitors. (Closed)
Patch Set: Rebase Created 4 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 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 "model_impl/model_type_store_backend.cc", 444 "model_impl/model_type_store_backend.cc",
445 "model_impl/model_type_store_backend.h", 445 "model_impl/model_type_store_backend.h",
446 "model_impl/model_type_store_impl.cc", 446 "model_impl/model_type_store_impl.cc",
447 "model_impl/model_type_store_impl.h", 447 "model_impl/model_type_store_impl.h",
448 "model_impl/processor_entity_tracker.cc", 448 "model_impl/processor_entity_tracker.cc",
449 "model_impl/processor_entity_tracker.h", 449 "model_impl/processor_entity_tracker.h",
450 "model_impl/shared_model_type_processor.cc", 450 "model_impl/shared_model_type_processor.cc",
451 "model_impl/shared_model_type_processor.h", 451 "model_impl/shared_model_type_processor.h",
452 "protocol/proto_enum_conversions.cc", 452 "protocol/proto_enum_conversions.cc",
453 "protocol/proto_enum_conversions.h", 453 "protocol/proto_enum_conversions.h",
454 "protocol/proto_old_value_conversions.cc",
455 "protocol/proto_old_value_conversions.h",
454 "protocol/proto_value_conversions.cc", 456 "protocol/proto_value_conversions.cc",
455 "protocol/proto_value_conversions.h", 457 "protocol/proto_value_conversions.h",
456 "protocol/sync_protocol_error.cc", 458 "protocol/sync_protocol_error.cc",
457 "protocol/sync_protocol_error.h", 459 "protocol/sync_protocol_error.h",
458 "syncable/base_node.cc", 460 "syncable/base_node.cc",
459 "syncable/base_node.h", 461 "syncable/base_node.h",
460 "syncable/base_transaction.cc", 462 "syncable/base_transaction.cc",
461 "syncable/base_transaction.h", 463 "syncable/base_transaction.h",
462 "syncable/change_record.cc", 464 "syncable/change_record.cc",
463 "syncable/change_record.h", 465 "syncable/change_record.h",
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
875 "model/sync_change_unittest.cc", 877 "model/sync_change_unittest.cc",
876 "model/sync_data_unittest.cc", 878 "model/sync_data_unittest.cc",
877 "model/sync_error_unittest.cc", 879 "model/sync_error_unittest.cc",
878 "model/sync_merge_result_unittest.cc", 880 "model/sync_merge_result_unittest.cc",
879 "model_impl/attachments/attachment_service_impl_unittest.cc", 881 "model_impl/attachments/attachment_service_impl_unittest.cc",
880 "model_impl/attachments/task_queue_unittest.cc", 882 "model_impl/attachments/task_queue_unittest.cc",
881 "model_impl/model_type_store_backend_unittest.cc", 883 "model_impl/model_type_store_backend_unittest.cc",
882 "model_impl/model_type_store_impl_unittest.cc", 884 "model_impl/model_type_store_impl_unittest.cc",
883 "model_impl/processor_entity_tracker_unittest.cc", 885 "model_impl/processor_entity_tracker_unittest.cc",
884 "model_impl/shared_model_type_processor_unittest.cc", 886 "model_impl/shared_model_type_processor_unittest.cc",
887 "protocol/proto_compare_value_conversions_unittest.cc",
885 "protocol/proto_enum_conversions_unittest.cc", 888 "protocol/proto_enum_conversions_unittest.cc",
889 "protocol/proto_unittest_serialized_data.cc",
890 "protocol/proto_unittest_serialized_data.h",
886 "protocol/proto_value_conversions_unittest.cc", 891 "protocol/proto_value_conversions_unittest.cc",
887 "syncable/change_record_unittest.cc", 892 "syncable/change_record_unittest.cc",
888 "syncable/directory_backing_store_unittest.cc", 893 "syncable/directory_backing_store_unittest.cc",
889 "syncable/directory_unittest.cc", 894 "syncable/directory_unittest.cc",
890 "syncable/directory_unittest.h", 895 "syncable/directory_unittest.h",
891 "syncable/entry_kernel_unittest.cc", 896 "syncable/entry_kernel_unittest.cc",
892 "syncable/model_type_unittest.cc", 897 "syncable/model_type_unittest.cc",
893 "syncable/nigori_util_unittest.cc", 898 "syncable/nigori_util_unittest.cc",
894 "syncable/parent_child_index_unittest.cc", 899 "syncable/parent_child_index_unittest.cc",
895 "syncable/syncable_enum_conversions_unittest.cc", 900 "syncable/syncable_enum_conversions_unittest.cc",
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
1095 deps = [ 1100 deps = [
1096 ":fake_server_jni", 1101 ":fake_server_jni",
1097 ":sync", 1102 ":sync",
1098 ":test_support_fake_server", 1103 ":test_support_fake_server",
1099 "//base", 1104 "//base",
1100 "//testing/gtest", 1105 "//testing/gtest",
1101 "//url:url", 1106 "//url:url",
1102 ] 1107 ]
1103 } 1108 }
1104 } 1109 }
OLDNEW
« no previous file with comments | « no previous file | components/sync/driver/about_sync_util.cc » ('j') | components/sync/protocol/proto_visitors.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698