OLD | NEW |
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") { |
11 sources = [ | 11 sources = [ |
12 "api/attachments/attachment.cc", | 12 "api/attachments/attachment.cc", |
13 "api/attachments/attachment.h", | 13 "api/attachments/attachment.h", |
14 "api/attachments/attachment_id.cc", | 14 "api/attachments/attachment_id.cc", |
15 "api/attachments/attachment_id.h", | 15 "api/attachments/attachment_id.h", |
16 "api/attachments/attachment_metadata.cc", | 16 "api/attachments/attachment_metadata.cc", |
17 "api/attachments/attachment_metadata.h", | 17 "api/attachments/attachment_metadata.h", |
| 18 "api/attachments/attachment_service.cc", |
| 19 "api/attachments/attachment_service.h", |
| 20 "api/attachments/attachment_service_proxy.cc", |
| 21 "api/attachments/attachment_service_proxy.h", |
| 22 "api/attachments/attachment_service_proxy_for_test.cc", |
| 23 "api/attachments/attachment_service_proxy_for_test.h", |
18 "api/attachments/attachment_store.cc", | 24 "api/attachments/attachment_store.cc", |
19 "api/attachments/attachment_store.h", | 25 "api/attachments/attachment_store.h", |
20 "api/attachments/attachment_store_backend.cc", | |
21 "api/attachments/attachment_store_backend.h", | |
22 "api/conflict_resolution.cc", | 26 "api/conflict_resolution.cc", |
23 "api/conflict_resolution.h", | 27 "api/conflict_resolution.h", |
24 "api/data_batch.h", | 28 "api/data_batch.h", |
25 "api/data_type_error_handler.h", | 29 "api/data_type_error_handler.h", |
26 "api/data_type_error_handler_impl.cc", | 30 "api/data_type_error_handler_impl.cc", |
27 "api/data_type_error_handler_impl.h", | 31 "api/data_type_error_handler_impl.h", |
28 "api/entity_change.cc", | 32 "api/entity_change.cc", |
29 "api/entity_change.h", | 33 "api/entity_change.h", |
30 "api/entity_data.cc", | 34 "api/entity_data.cc", |
31 "api/entity_data.h", | 35 "api/entity_data.h", |
(...skipping 16 matching lines...) Expand all Loading... |
48 "api/sync_data.h", | 52 "api/sync_data.h", |
49 "api/sync_error.cc", | 53 "api/sync_error.cc", |
50 "api/sync_error.h", | 54 "api/sync_error.h", |
51 "api/sync_error_factory.cc", | 55 "api/sync_error_factory.cc", |
52 "api/sync_error_factory.h", | 56 "api/sync_error_factory.h", |
53 "api/sync_merge_result.cc", | 57 "api/sync_merge_result.cc", |
54 "api/sync_merge_result.h", | 58 "api/sync_merge_result.h", |
55 "api/syncable_service.cc", | 59 "api/syncable_service.cc", |
56 "api/syncable_service.h", | 60 "api/syncable_service.h", |
57 "api/time.h", | 61 "api/time.h", |
| 62 "api_impl/attachments/attachment_service_impl.cc", |
| 63 "api_impl/attachments/attachment_service_impl.h", |
| 64 "api_impl/attachments/task_queue.h", |
58 "base/attachment_id_proto.cc", | 65 "base/attachment_id_proto.cc", |
59 "base/attachment_id_proto.h", | 66 "base/attachment_id_proto.h", |
60 "base/bind_to_task_runner.h", | 67 "base/bind_to_task_runner.h", |
61 "base/cancelation_observer.cc", | 68 "base/cancelation_observer.cc", |
62 "base/cancelation_observer.h", | 69 "base/cancelation_observer.h", |
63 "base/cancelation_signal.cc", | 70 "base/cancelation_signal.cc", |
64 "base/cancelation_signal.h", | 71 "base/cancelation_signal.h", |
65 "base/cryptographer.cc", | 72 "base/cryptographer.cc", |
66 "base/cryptographer.h", | 73 "base/cryptographer.h", |
67 "base/data_type_histogram.cc", | 74 "base/data_type_histogram.cc", |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 "base/time.h", | 124 "base/time.h", |
118 "base/unique_position.cc", | 125 "base/unique_position.cc", |
119 "base/unique_position.h", | 126 "base/unique_position.h", |
120 "base/unrecoverable_error_handler.h", | 127 "base/unrecoverable_error_handler.h", |
121 "base/unrecoverable_error_info.cc", | 128 "base/unrecoverable_error_info.cc", |
122 "base/unrecoverable_error_info.h", | 129 "base/unrecoverable_error_info.h", |
123 "base/weak_handle.cc", | 130 "base/weak_handle.cc", |
124 "base/weak_handle.h", | 131 "base/weak_handle.h", |
125 "core/activation_context.cc", | 132 "core/activation_context.cc", |
126 "core/activation_context.h", | 133 "core/activation_context.h", |
127 "core/attachments/attachment_downloader.h", | |
128 "core/attachments/attachment_downloader_impl.h", | |
129 "core/attachments/attachment_service.h", | |
130 "core/attachments/attachment_service_impl.h", | |
131 "core/attachments/attachment_service_proxy.h", | |
132 "core/attachments/attachment_service_proxy_for_test.h", | |
133 "core/attachments/attachment_store_frontend.h", | |
134 "core/attachments/attachment_uploader.h", | |
135 "core/attachments/attachment_uploader_impl.h", | |
136 "core/attachments/attachment_util.h", | |
137 "core/attachments/fake_attachment_downloader.h", | |
138 "core/attachments/fake_attachment_uploader.h", | |
139 "core/attachments/in_memory_attachment_store.h", | |
140 "core/attachments/on_disk_attachment_store.h", | |
141 "core/base_node.cc", | 134 "core/base_node.cc", |
142 "core/base_node.h", | 135 "core/base_node.h", |
143 "core/base_transaction.cc", | 136 "core/base_transaction.cc", |
144 "core/base_transaction.h", | 137 "core/base_transaction.h", |
145 "core/change_record.cc", | 138 "core/change_record.cc", |
146 "core/change_record.h", | 139 "core/change_record.h", |
147 "core/configure_reason.h", | 140 "core/configure_reason.h", |
148 "core/data_batch_impl.cc", | 141 "core/data_batch_impl.cc", |
149 "core/data_batch_impl.h", | 142 "core/data_batch_impl.h", |
150 "core/data_type_association_stats.cc", | 143 "core/data_type_association_stats.cc", |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 "core/sync_manager.cc", | 186 "core/sync_manager.cc", |
194 "core/sync_manager.h", | 187 "core/sync_manager.h", |
195 "core/sync_manager_factory.cc", | 188 "core/sync_manager_factory.cc", |
196 "core/sync_manager_factory.h", | 189 "core/sync_manager_factory.h", |
197 "core/user_share.cc", | 190 "core/user_share.cc", |
198 "core/user_share.h", | 191 "core/user_share.h", |
199 "core/write_node.cc", | 192 "core/write_node.cc", |
200 "core/write_node.h", | 193 "core/write_node.h", |
201 "core/write_transaction.cc", | 194 "core/write_transaction.cc", |
202 "core/write_transaction.h", | 195 "core/write_transaction.h", |
203 "core_impl/attachments/attachment_downloader.cc", | |
204 "core_impl/attachments/attachment_downloader_impl.cc", | |
205 "core_impl/attachments/attachment_service.cc", | |
206 "core_impl/attachments/attachment_service_impl.cc", | |
207 "core_impl/attachments/attachment_service_proxy.cc", | |
208 "core_impl/attachments/attachment_service_proxy_for_test.cc", | |
209 "core_impl/attachments/attachment_store_frontend.cc", | |
210 "core_impl/attachments/attachment_uploader.cc", | |
211 "core_impl/attachments/attachment_uploader_impl.cc", | |
212 "core_impl/attachments/attachment_util.cc", | |
213 "core_impl/attachments/fake_attachment_downloader.cc", | |
214 "core_impl/attachments/fake_attachment_uploader.cc", | |
215 "core_impl/attachments/in_memory_attachment_store.cc", | |
216 "core_impl/attachments/on_disk_attachment_store.cc", | |
217 "core_impl/attachments/task_queue.cc", | |
218 "core_impl/change_reorder_buffer.cc", | 196 "core_impl/change_reorder_buffer.cc", |
219 "core_impl/change_reorder_buffer.h", | 197 "core_impl/change_reorder_buffer.h", |
220 "core_impl/debug_info_event_listener.cc", | 198 "core_impl/debug_info_event_listener.cc", |
221 "core_impl/debug_info_event_listener.h", | 199 "core_impl/debug_info_event_listener.h", |
222 "core_impl/js_mutation_event_observer.cc", | 200 "core_impl/js_mutation_event_observer.cc", |
223 "core_impl/js_mutation_event_observer.h", | 201 "core_impl/js_mutation_event_observer.h", |
224 "core_impl/js_sync_encryption_handler_observer.cc", | 202 "core_impl/js_sync_encryption_handler_observer.cc", |
225 "core_impl/js_sync_encryption_handler_observer.h", | 203 "core_impl/js_sync_encryption_handler_observer.h", |
226 "core_impl/js_sync_manager_observer.cc", | 204 "core_impl/js_sync_manager_observer.cc", |
227 "core_impl/js_sync_manager_observer.h", | 205 "core_impl/js_sync_manager_observer.h", |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 "driver/sync_service_utils.cc", | 305 "driver/sync_service_utils.cc", |
328 "driver/sync_service_utils.h", | 306 "driver/sync_service_utils.h", |
329 "driver/sync_stopped_reporter.cc", | 307 "driver/sync_stopped_reporter.cc", |
330 "driver/sync_stopped_reporter.h", | 308 "driver/sync_stopped_reporter.h", |
331 "driver/sync_type_preference_provider.h", | 309 "driver/sync_type_preference_provider.h", |
332 "driver/sync_util.cc", | 310 "driver/sync_util.cc", |
333 "driver/sync_util.h", | 311 "driver/sync_util.h", |
334 "driver/ui_data_type_controller.cc", | 312 "driver/ui_data_type_controller.cc", |
335 "driver/ui_data_type_controller.h", | 313 "driver/ui_data_type_controller.h", |
336 "driver/user_selectable_sync_type.h", | 314 "driver/user_selectable_sync_type.h", |
| 315 "engine/attachments/attachment_downloader.cc", |
| 316 "engine/attachments/attachment_downloader.h", |
| 317 "engine/attachments/attachment_store_backend.cc", |
| 318 "engine/attachments/attachment_store_backend.h", |
| 319 "engine/attachments/attachment_store_frontend.cc", |
| 320 "engine/attachments/attachment_store_frontend.h", |
| 321 "engine/attachments/attachment_uploader.cc", |
| 322 "engine/attachments/attachment_uploader.h", |
| 323 "engine/attachments/attachment_util.cc", |
| 324 "engine/attachments/attachment_util.h", |
| 325 "engine/attachments/fake_attachment_downloader.cc", |
| 326 "engine/attachments/fake_attachment_downloader.h", |
| 327 "engine/attachments/fake_attachment_uploader.cc", |
| 328 "engine/attachments/fake_attachment_uploader.h", |
| 329 "engine/attachments/in_memory_attachment_store.cc", |
| 330 "engine/attachments/in_memory_attachment_store.h", |
| 331 "engine/attachments/on_disk_attachment_store.cc", |
| 332 "engine/attachments/on_disk_attachment_store.h", |
337 "engine/commit_queue.cc", | 333 "engine/commit_queue.cc", |
338 "engine/commit_queue.h", | 334 "engine/commit_queue.h", |
339 "engine/cycle/commit_counters.cc", | 335 "engine/cycle/commit_counters.cc", |
340 "engine/cycle/commit_counters.h", | 336 "engine/cycle/commit_counters.h", |
341 "engine/cycle/model_neutral_state.cc", | 337 "engine/cycle/model_neutral_state.cc", |
342 "engine/cycle/model_neutral_state.h", | 338 "engine/cycle/model_neutral_state.h", |
343 "engine/cycle/status_counters.cc", | 339 "engine/cycle/status_counters.cc", |
344 "engine/cycle/status_counters.h", | 340 "engine/cycle/status_counters.h", |
345 "engine/cycle/sync_cycle_snapshot.cc", | 341 "engine/cycle/sync_cycle_snapshot.cc", |
346 "engine/cycle/sync_cycle_snapshot.h", | 342 "engine/cycle/sync_cycle_snapshot.h", |
(...skipping 26 matching lines...) Expand all Loading... |
373 "engine/polling_constants.cc", | 369 "engine/polling_constants.cc", |
374 "engine/polling_constants.h", | 370 "engine/polling_constants.h", |
375 "engine/sync_status.cc", | 371 "engine/sync_status.cc", |
376 "engine/sync_status.h", | 372 "engine/sync_status.h", |
377 "engine/sync_string_conversions.cc", | 373 "engine/sync_string_conversions.cc", |
378 "engine/sync_string_conversions.h", | 374 "engine/sync_string_conversions.h", |
379 "engine_impl/all_status.cc", | 375 "engine_impl/all_status.cc", |
380 "engine_impl/all_status.h", | 376 "engine_impl/all_status.h", |
381 "engine_impl/apply_control_data_updates.cc", | 377 "engine_impl/apply_control_data_updates.cc", |
382 "engine_impl/apply_control_data_updates.h", | 378 "engine_impl/apply_control_data_updates.h", |
| 379 "engine_impl/attachments/attachment_downloader_impl.cc", |
| 380 "engine_impl/attachments/attachment_downloader_impl.h", |
| 381 "engine_impl/attachments/attachment_uploader_impl.cc", |
| 382 "engine_impl/attachments/attachment_uploader_impl.h", |
383 "engine_impl/backoff_delay_provider.cc", | 383 "engine_impl/backoff_delay_provider.cc", |
384 "engine_impl/backoff_delay_provider.h", | 384 "engine_impl/backoff_delay_provider.h", |
385 "engine_impl/clear_server_data.cc", | 385 "engine_impl/clear_server_data.cc", |
386 "engine_impl/clear_server_data.h", | 386 "engine_impl/clear_server_data.h", |
387 "engine_impl/commit.cc", | 387 "engine_impl/commit.cc", |
388 "engine_impl/commit.h", | 388 "engine_impl/commit.h", |
389 "engine_impl/commit_contribution.cc", | 389 "engine_impl/commit_contribution.cc", |
390 "engine_impl/commit_contribution.h", | 390 "engine_impl/commit_contribution.h", |
391 "engine_impl/commit_contributor.cc", | 391 "engine_impl/commit_contributor.cc", |
392 "engine_impl/commit_contributor.h", | 392 "engine_impl/commit_contributor.h", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 "syncable/syncable_write_transaction.cc", | 530 "syncable/syncable_write_transaction.cc", |
531 "syncable/syncable_write_transaction.h", | 531 "syncable/syncable_write_transaction.h", |
532 "syncable/transaction_observer.h", | 532 "syncable/transaction_observer.h", |
533 "syncable/write_transaction_info.cc", | 533 "syncable/write_transaction_info.cc", |
534 "syncable/write_transaction_info.h", | 534 "syncable/write_transaction_info.h", |
535 ] | 535 ] |
536 | 536 |
537 configs += [ "//build/config:precompiled_headers" ] | 537 configs += [ "//build/config:precompiled_headers" ] |
538 | 538 |
539 public_deps = [ | 539 public_deps = [ |
540 "//components/sync/core_impl/attachments/proto", | 540 "//components/sync/engine_impl/attachments/proto", |
541 "//components/sync/protocol", | 541 "//components/sync/protocol", |
542 ] | 542 ] |
543 deps = [ | 543 deps = [ |
544 "//base", | 544 "//base", |
545 "//base:i18n", | 545 "//base:i18n", |
546 "//base/third_party/dynamic_annotations", | 546 "//base/third_party/dynamic_annotations", |
547 "//components/data_use_measurement/core", | 547 "//components/data_use_measurement/core", |
548 "//components/invalidation/public", | 548 "//components/invalidation/public", |
549 "//components/metrics", | 549 "//components/metrics", |
550 "//components/os_crypt", | 550 "//components/os_crypt", |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
779 "//testing/gmock", | 779 "//testing/gmock", |
780 "//testing/gtest", | 780 "//testing/gtest", |
781 ] | 781 ] |
782 } | 782 } |
783 | 783 |
784 source_set("unit_tests") { | 784 source_set("unit_tests") { |
785 testonly = true | 785 testonly = true |
786 sources = [ | 786 sources = [ |
787 "api/attachments/attachment_id_unittest.cc", | 787 "api/attachments/attachment_id_unittest.cc", |
788 "api/attachments/attachment_metadata_unittest.cc", | 788 "api/attachments/attachment_metadata_unittest.cc", |
| 789 "api/attachments/attachment_service_proxy_unittest.cc", |
789 "api/attachments/attachment_unittest.cc", | 790 "api/attachments/attachment_unittest.cc", |
790 "api/entity_data_unittest.cc", | 791 "api/entity_data_unittest.cc", |
791 "api/model_type_service_unittest.cc", | 792 "api/model_type_service_unittest.cc", |
792 "api/sync_change_unittest.cc", | 793 "api/sync_change_unittest.cc", |
793 "api/sync_data_unittest.cc", | 794 "api/sync_data_unittest.cc", |
794 "api/sync_error_unittest.cc", | 795 "api/sync_error_unittest.cc", |
795 "api/sync_merge_result_unittest.cc", | 796 "api/sync_merge_result_unittest.cc", |
| 797 "api_impl/attachments/attachment_service_impl_unittest.cc", |
| 798 "api_impl/attachments/task_queue_unittest.cc", |
796 "base/attachment_id_proto_unittest.cc", | 799 "base/attachment_id_proto_unittest.cc", |
797 "base/bind_to_task_runner_unittest.cc", | 800 "base/bind_to_task_runner_unittest.cc", |
798 "base/cancelation_signal_unittest.cc", | 801 "base/cancelation_signal_unittest.cc", |
799 "base/cryptographer_unittest.cc", | 802 "base/cryptographer_unittest.cc", |
800 "base/data_type_histogram_unittest.cc", | 803 "base/data_type_histogram_unittest.cc", |
801 "base/enum_set_unittest.cc", | 804 "base/enum_set_unittest.cc", |
802 "base/get_session_name_unittest.cc", | 805 "base/get_session_name_unittest.cc", |
803 "base/immutable_unittest.cc", | 806 "base/immutable_unittest.cc", |
804 "base/nigori_unittest.cc", | 807 "base/nigori_unittest.cc", |
805 "base/node_ordinal_unittest.cc", | 808 "base/node_ordinal_unittest.cc", |
806 "base/ordinal_unittest.cc", | 809 "base/ordinal_unittest.cc", |
807 "base/proto_value_ptr_unittest.cc", | 810 "base/proto_value_ptr_unittest.cc", |
808 "base/protobuf_unittest.cc", | 811 "base/protobuf_unittest.cc", |
809 "base/sync_prefs_unittest.cc", | 812 "base/sync_prefs_unittest.cc", |
810 "base/system_encryptor_unittest.cc", | 813 "base/system_encryptor_unittest.cc", |
811 "base/unique_position_unittest.cc", | 814 "base/unique_position_unittest.cc", |
812 "base/weak_handle_unittest.cc", | 815 "base/weak_handle_unittest.cc", |
813 "core/change_record_unittest.cc", | 816 "core/change_record_unittest.cc", |
814 "core/data_batch_impl_unittest.cc", | 817 "core/data_batch_impl_unittest.cc", |
815 "core/http_bridge_unittest.cc", | 818 "core/http_bridge_unittest.cc", |
816 "core/model_type_store_backend_unittest.cc", | 819 "core/model_type_store_backend_unittest.cc", |
817 "core/model_type_store_impl_unittest.cc", | 820 "core/model_type_store_impl_unittest.cc", |
818 "core/processor_entity_tracker_unittest.cc", | 821 "core/processor_entity_tracker_unittest.cc", |
819 "core/shared_model_type_processor_unittest.cc", | 822 "core/shared_model_type_processor_unittest.cc", |
820 "core/simple_metadata_change_list_unittest.cc", | 823 "core/simple_metadata_change_list_unittest.cc", |
821 "core_impl/attachments/attachment_downloader_impl_unittest.cc", | |
822 "core_impl/attachments/attachment_service_impl_unittest.cc", | |
823 "core_impl/attachments/attachment_service_proxy_unittest.cc", | |
824 "core_impl/attachments/attachment_store_frontend_unittest.cc", | |
825 "core_impl/attachments/attachment_store_test_template.h", | |
826 "core_impl/attachments/attachment_uploader_impl_unittest.cc", | |
827 "core_impl/attachments/fake_attachment_downloader_unittest.cc", | |
828 "core_impl/attachments/fake_attachment_uploader_unittest.cc", | |
829 "core_impl/attachments/in_memory_attachment_store_unittest.cc", | |
830 "core_impl/attachments/on_disk_attachment_store_unittest.cc", | |
831 "core_impl/attachments/task_queue_unittest.cc", | |
832 "core_impl/debug_info_event_listener_unittest.cc", | 824 "core_impl/debug_info_event_listener_unittest.cc", |
833 "core_impl/js_mutation_event_observer_unittest.cc", | 825 "core_impl/js_mutation_event_observer_unittest.cc", |
834 "core_impl/js_sync_encryption_handler_observer_unittest.cc", | 826 "core_impl/js_sync_encryption_handler_observer_unittest.cc", |
835 "core_impl/js_sync_manager_observer_unittest.cc", | 827 "core_impl/js_sync_manager_observer_unittest.cc", |
836 "core_impl/model_type_connector_proxy_unittest.cc", | 828 "core_impl/model_type_connector_proxy_unittest.cc", |
837 "core_impl/protocol_event_buffer_unittest.cc", | 829 "core_impl/protocol_event_buffer_unittest.cc", |
838 "core_impl/sync_encryption_handler_impl_unittest.cc", | 830 "core_impl/sync_encryption_handler_impl_unittest.cc", |
839 "core_impl/sync_manager_impl_unittest.cc", | 831 "core_impl/sync_manager_impl_unittest.cc", |
840 "core_impl/syncapi_server_connection_manager_unittest.cc", | 832 "core_impl/syncapi_server_connection_manager_unittest.cc", |
841 "device_info/device_count_metrics_provider_unittest.cc", | 833 "device_info/device_count_metrics_provider_unittest.cc", |
(...skipping 12 matching lines...) Expand all Loading... |
854 "driver/glue/sync_backend_registrar_unittest.cc", | 846 "driver/glue/sync_backend_registrar_unittest.cc", |
855 "driver/glue/ui_model_worker_unittest.cc", | 847 "driver/glue/ui_model_worker_unittest.cc", |
856 "driver/model_association_manager_unittest.cc", | 848 "driver/model_association_manager_unittest.cc", |
857 "driver/model_type_controller_unittest.cc", | 849 "driver/model_type_controller_unittest.cc", |
858 "driver/non_ui_data_type_controller_unittest.cc", | 850 "driver/non_ui_data_type_controller_unittest.cc", |
859 "driver/shared_change_processor_unittest.cc", | 851 "driver/shared_change_processor_unittest.cc", |
860 "driver/startup_controller_unittest.cc", | 852 "driver/startup_controller_unittest.cc", |
861 "driver/sync_stopped_reporter_unittest.cc", | 853 "driver/sync_stopped_reporter_unittest.cc", |
862 "driver/sync_util_unittest.cc", | 854 "driver/sync_util_unittest.cc", |
863 "driver/ui_data_type_controller_unittest.cc", | 855 "driver/ui_data_type_controller_unittest.cc", |
| 856 "engine/attachments/attachment_store_frontend_unittest.cc", |
| 857 "engine/attachments/attachment_store_test_template.h", |
| 858 "engine/attachments/fake_attachment_downloader_unittest.cc", |
| 859 "engine/attachments/fake_attachment_uploader_unittest.cc", |
| 860 "engine/attachments/in_memory_attachment_store_unittest.cc", |
| 861 "engine/attachments/on_disk_attachment_store_unittest.cc", |
864 "engine/cycle/sync_cycle_snapshot_unittest.cc", | 862 "engine/cycle/sync_cycle_snapshot_unittest.cc", |
865 "engine/model_safe_worker_unittest.cc", | 863 "engine/model_safe_worker_unittest.cc", |
866 "engine_impl/apply_control_data_updates_unittest.cc", | 864 "engine_impl/apply_control_data_updates_unittest.cc", |
| 865 "engine_impl/attachments/attachment_downloader_impl_unittest.cc", |
| 866 "engine_impl/attachments/attachment_uploader_impl_unittest.cc", |
867 "engine_impl/backoff_delay_provider_unittest.cc", | 867 "engine_impl/backoff_delay_provider_unittest.cc", |
868 "engine_impl/cycle/nudge_tracker_unittest.cc", | 868 "engine_impl/cycle/nudge_tracker_unittest.cc", |
869 "engine_impl/cycle/status_controller_unittest.cc", | 869 "engine_impl/cycle/status_controller_unittest.cc", |
870 "engine_impl/directory_commit_contribution_unittest.cc", | 870 "engine_impl/directory_commit_contribution_unittest.cc", |
871 "engine_impl/directory_update_handler_unittest.cc", | 871 "engine_impl/directory_update_handler_unittest.cc", |
872 "engine_impl/get_updates_processor_unittest.cc", | 872 "engine_impl/get_updates_processor_unittest.cc", |
873 "engine_impl/model_type_registry_unittest.cc", | 873 "engine_impl/model_type_registry_unittest.cc", |
874 "engine_impl/model_type_worker_unittest.cc", | 874 "engine_impl/model_type_worker_unittest.cc", |
875 "engine_impl/sync_scheduler_impl_unittest.cc", | 875 "engine_impl/sync_scheduler_impl_unittest.cc", |
876 "engine_impl/syncer_proto_util_unittest.cc", | 876 "engine_impl/syncer_proto_util_unittest.cc", |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1090 deps = [ | 1090 deps = [ |
1091 ":fake_server_jni", | 1091 ":fake_server_jni", |
1092 ":sync", | 1092 ":sync", |
1093 ":test_support_sync_fake_server", | 1093 ":test_support_sync_fake_server", |
1094 "//base", | 1094 "//base", |
1095 "//testing/gtest", | 1095 "//testing/gtest", |
1096 "//url:url", | 1096 "//url:url", |
1097 ] | 1097 ] |
1098 } | 1098 } |
1099 } | 1099 } |
OLD | NEW |