| 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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 "model_impl/model_type_store_impl.cc", | 460 "model_impl/model_type_store_impl.cc", |
| 461 "model_impl/model_type_store_impl.h", | 461 "model_impl/model_type_store_impl.h", |
| 462 "model_impl/passthrough_metadata_change_list.cc", | 462 "model_impl/passthrough_metadata_change_list.cc", |
| 463 "model_impl/passthrough_metadata_change_list.h", | 463 "model_impl/passthrough_metadata_change_list.h", |
| 464 "model_impl/processor_entity_tracker.cc", | 464 "model_impl/processor_entity_tracker.cc", |
| 465 "model_impl/processor_entity_tracker.h", | 465 "model_impl/processor_entity_tracker.h", |
| 466 "model_impl/shared_model_type_processor.cc", | 466 "model_impl/shared_model_type_processor.cc", |
| 467 "model_impl/shared_model_type_processor.h", | 467 "model_impl/shared_model_type_processor.h", |
| 468 "protocol/proto_enum_conversions.cc", | 468 "protocol/proto_enum_conversions.cc", |
| 469 "protocol/proto_enum_conversions.h", | 469 "protocol/proto_enum_conversions.h", |
| 470 "protocol/proto_memory_estimations.cc", |
| 471 "protocol/proto_memory_estimations.h", |
| 470 "protocol/proto_value_conversions.cc", | 472 "protocol/proto_value_conversions.cc", |
| 471 "protocol/proto_value_conversions.h", | 473 "protocol/proto_value_conversions.h", |
| 472 "protocol/proto_visitors.h", | 474 "protocol/proto_visitors.h", |
| 473 "protocol/sync_protocol_error.cc", | 475 "protocol/sync_protocol_error.cc", |
| 474 "protocol/sync_protocol_error.h", | 476 "protocol/sync_protocol_error.h", |
| 475 "syncable/base_node.cc", | 477 "syncable/base_node.cc", |
| 476 "syncable/base_node.h", | 478 "syncable/base_node.h", |
| 477 "syncable/base_transaction.cc", | 479 "syncable/base_transaction.cc", |
| 478 "syncable/base_transaction.h", | 480 "syncable/base_transaction.h", |
| 479 "syncable/change_record.cc", | 481 "syncable/change_record.cc", |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1138 deps = [ | 1140 deps = [ |
| 1139 ":fake_server_jni", | 1141 ":fake_server_jni", |
| 1140 ":sync", | 1142 ":sync", |
| 1141 ":test_support_fake_server", | 1143 ":test_support_fake_server", |
| 1142 "//base", | 1144 "//base", |
| 1143 "//testing/gtest", | 1145 "//testing/gtest", |
| 1144 "//url:url", | 1146 "//url:url", |
| 1145 ] | 1147 ] |
| 1146 } | 1148 } |
| 1147 } | 1149 } |
| OLD | NEW |