| 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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 "model/data_type_error_handler_impl.cc", | 429 "model/data_type_error_handler_impl.cc", |
| 430 "model/data_type_error_handler_impl.h", | 430 "model/data_type_error_handler_impl.h", |
| 431 "model/entity_change.cc", | 431 "model/entity_change.cc", |
| 432 "model/entity_change.h", | 432 "model/entity_change.h", |
| 433 "model/entity_data.cc", | 433 "model/entity_data.cc", |
| 434 "model/entity_data.h", | 434 "model/entity_data.h", |
| 435 "model/local_change_observer.h", | 435 "model/local_change_observer.h", |
| 436 "model/metadata_batch.cc", | 436 "model/metadata_batch.cc", |
| 437 "model/metadata_batch.h", | 437 "model/metadata_batch.h", |
| 438 "model/metadata_change_list.h", | 438 "model/metadata_change_list.h", |
| 439 "model/model_error.cc", |
| 440 "model/model_error.h", |
| 439 "model/model_type_change_processor.cc", | 441 "model/model_type_change_processor.cc", |
| 440 "model/model_type_change_processor.h", | 442 "model/model_type_change_processor.h", |
| 441 "model/model_type_debug_info.cc", | 443 "model/model_type_debug_info.cc", |
| 442 "model/model_type_debug_info.h", | 444 "model/model_type_debug_info.h", |
| 443 "model/model_type_store.cc", | 445 "model/model_type_store.cc", |
| 444 "model/model_type_store.h", | 446 "model/model_type_store.h", |
| 445 "model/model_type_sync_bridge.cc", | 447 "model/model_type_sync_bridge.cc", |
| 446 "model/model_type_sync_bridge.h", | 448 "model/model_type_sync_bridge.h", |
| 447 "model/mutable_data_batch.cc", | 449 "model/mutable_data_batch.cc", |
| 448 "model/mutable_data_batch.h", | 450 "model/mutable_data_batch.h", |
| (...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1134 deps = [ | 1136 deps = [ |
| 1135 ":fake_server_jni", | 1137 ":fake_server_jni", |
| 1136 ":sync", | 1138 ":sync", |
| 1137 ":test_support_fake_server", | 1139 ":test_support_fake_server", |
| 1138 "//base", | 1140 "//base", |
| 1139 "//testing/gtest", | 1141 "//testing/gtest", |
| 1140 "//url:url", | 1142 "//url:url", |
| 1141 ] | 1143 ] |
| 1142 } | 1144 } |
| 1143 } | 1145 } |
| OLD | NEW |