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") { |
(...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 "model/data_type_error_handler_impl.cc", | 431 "model/data_type_error_handler_impl.cc", |
432 "model/data_type_error_handler_impl.h", | 432 "model/data_type_error_handler_impl.h", |
433 "model/entity_change.cc", | 433 "model/entity_change.cc", |
434 "model/entity_change.h", | 434 "model/entity_change.h", |
435 "model/entity_data.cc", | 435 "model/entity_data.cc", |
436 "model/entity_data.h", | 436 "model/entity_data.h", |
437 "model/local_change_observer.h", | 437 "model/local_change_observer.h", |
438 "model/metadata_batch.cc", | 438 "model/metadata_batch.cc", |
439 "model/metadata_batch.h", | 439 "model/metadata_batch.h", |
440 "model/metadata_change_list.h", | 440 "model/metadata_change_list.h", |
| 441 "model/metadata_table.h", |
441 "model/model_error.cc", | 442 "model/model_error.cc", |
442 "model/model_error.h", | 443 "model/model_error.h", |
443 "model/model_type_change_processor.cc", | 444 "model/model_type_change_processor.cc", |
444 "model/model_type_change_processor.h", | 445 "model/model_type_change_processor.h", |
445 "model/model_type_debug_info.cc", | 446 "model/model_type_debug_info.cc", |
446 "model/model_type_debug_info.h", | 447 "model/model_type_debug_info.h", |
447 "model/model_type_store.cc", | 448 "model/model_type_store.cc", |
448 "model/model_type_store.h", | 449 "model/model_type_store.h", |
449 "model/model_type_sync_bridge.cc", | 450 "model/model_type_sync_bridge.cc", |
450 "model/model_type_sync_bridge.h", | 451 "model/model_type_sync_bridge.h", |
(...skipping 19 matching lines...) Expand all Loading... |
470 "model_impl/accumulating_metadata_change_list.h", | 471 "model_impl/accumulating_metadata_change_list.h", |
471 "model_impl/attachments/attachment_service_impl.cc", | 472 "model_impl/attachments/attachment_service_impl.cc", |
472 "model_impl/attachments/attachment_service_impl.h", | 473 "model_impl/attachments/attachment_service_impl.h", |
473 "model_impl/attachments/task_queue.h", | 474 "model_impl/attachments/task_queue.h", |
474 "model_impl/in_memory_metadata_change_list.cc", | 475 "model_impl/in_memory_metadata_change_list.cc", |
475 "model_impl/in_memory_metadata_change_list.h", | 476 "model_impl/in_memory_metadata_change_list.h", |
476 "model_impl/model_type_store_backend.cc", | 477 "model_impl/model_type_store_backend.cc", |
477 "model_impl/model_type_store_backend.h", | 478 "model_impl/model_type_store_backend.h", |
478 "model_impl/model_type_store_impl.cc", | 479 "model_impl/model_type_store_impl.cc", |
479 "model_impl/model_type_store_impl.h", | 480 "model_impl/model_type_store_impl.h", |
| 481 "model_impl/on_disk_metadata_change_list.cc", |
| 482 "model_impl/on_disk_metadata_change_list.h", |
480 "model_impl/passthrough_metadata_change_list.cc", | 483 "model_impl/passthrough_metadata_change_list.cc", |
481 "model_impl/passthrough_metadata_change_list.h", | 484 "model_impl/passthrough_metadata_change_list.h", |
482 "model_impl/processor_entity_tracker.cc", | 485 "model_impl/processor_entity_tracker.cc", |
483 "model_impl/processor_entity_tracker.h", | 486 "model_impl/processor_entity_tracker.h", |
484 "model_impl/shared_model_type_processor.cc", | 487 "model_impl/shared_model_type_processor.cc", |
485 "model_impl/shared_model_type_processor.h", | 488 "model_impl/shared_model_type_processor.h", |
486 "protocol/proto_enum_conversions.cc", | 489 "protocol/proto_enum_conversions.cc", |
487 "protocol/proto_enum_conversions.h", | 490 "protocol/proto_enum_conversions.h", |
488 "protocol/proto_memory_estimations.cc", | 491 "protocol/proto_memory_estimations.cc", |
489 "protocol/proto_memory_estimations.h", | 492 "protocol/proto_memory_estimations.h", |
(...skipping 652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1142 deps = [ | 1145 deps = [ |
1143 ":fake_server_jni", | 1146 ":fake_server_jni", |
1144 ":sync", | 1147 ":sync", |
1145 ":test_support_fake_server", | 1148 ":test_support_fake_server", |
1146 "//base", | 1149 "//base", |
1147 "//testing/gtest", | 1150 "//testing/gtest", |
1148 "//url:url", | 1151 "//url:url", |
1149 ] | 1152 ] |
1150 } | 1153 } |
1151 } | 1154 } |
OLD | NEW |