| 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 435 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_value_conversions.cc", | 454 "protocol/proto_value_conversions.cc", |
| 455 "protocol/proto_value_conversions.h", | 455 "protocol/proto_value_conversions.h", |
| 456 "protocol/proto_visitors.h", |
| 456 "protocol/sync_protocol_error.cc", | 457 "protocol/sync_protocol_error.cc", |
| 457 "protocol/sync_protocol_error.h", | 458 "protocol/sync_protocol_error.h", |
| 458 "syncable/base_node.cc", | 459 "syncable/base_node.cc", |
| 459 "syncable/base_node.h", | 460 "syncable/base_node.h", |
| 460 "syncable/base_transaction.cc", | 461 "syncable/base_transaction.cc", |
| 461 "syncable/base_transaction.h", | 462 "syncable/base_transaction.h", |
| 462 "syncable/change_record.cc", | 463 "syncable/change_record.cc", |
| 463 "syncable/change_record.h", | 464 "syncable/change_record.h", |
| 464 "syncable/change_reorder_buffer.cc", | 465 "syncable/change_reorder_buffer.cc", |
| 465 "syncable/change_reorder_buffer.h", | 466 "syncable/change_reorder_buffer.h", |
| (...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1094 deps = [ | 1095 deps = [ |
| 1095 ":fake_server_jni", | 1096 ":fake_server_jni", |
| 1096 ":sync", | 1097 ":sync", |
| 1097 ":test_support_fake_server", | 1098 ":test_support_fake_server", |
| 1098 "//base", | 1099 "//base", |
| 1099 "//testing/gtest", | 1100 "//testing/gtest", |
| 1100 "//url:url", | 1101 "//url:url", |
| 1101 ] | 1102 ] |
| 1102 } | 1103 } |
| 1103 } | 1104 } |
| OLD | NEW |