| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 "core/model_type_connector.h", | 153 "core/model_type_connector.h", |
| 154 "core/model_type_processor.cc", | 154 "core/model_type_processor.cc", |
| 155 "core/model_type_processor.h", | 155 "core/model_type_processor.h", |
| 156 "core/model_type_store_backend.cc", | 156 "core/model_type_store_backend.cc", |
| 157 "core/model_type_store_backend.h", | 157 "core/model_type_store_backend.h", |
| 158 "core/model_type_store_impl.cc", | 158 "core/model_type_store_impl.cc", |
| 159 "core/model_type_store_impl.h", | 159 "core/model_type_store_impl.h", |
| 160 "core/network_resources.h", | 160 "core/network_resources.h", |
| 161 "core/non_blocking_sync_common.cc", | 161 "core/non_blocking_sync_common.cc", |
| 162 "core/non_blocking_sync_common.h", | 162 "core/non_blocking_sync_common.h", |
| 163 "core/password_metadata_filling.cc", |
| 164 "core/password_metadata_filling.h", |
| 163 "core/processor_entity_tracker.cc", | 165 "core/processor_entity_tracker.cc", |
| 164 "core/processor_entity_tracker.h", | 166 "core/processor_entity_tracker.h", |
| 165 "core/read_node.cc", | 167 "core/read_node.cc", |
| 166 "core/read_node.h", | 168 "core/read_node.h", |
| 167 "core/read_transaction.cc", | 169 "core/read_transaction.cc", |
| 168 "core/read_transaction.h", | 170 "core/read_transaction.h", |
| 169 "core/shared_model_type_processor.cc", | 171 "core/shared_model_type_processor.cc", |
| 170 "core/shared_model_type_processor.h", | 172 "core/shared_model_type_processor.h", |
| 171 "core/shutdown_reason.h", | 173 "core/shutdown_reason.h", |
| 172 "core/simple_metadata_change_list.cc", | 174 "core/simple_metadata_change_list.cc", |
| (...skipping 927 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 deps = [ | 1102 deps = [ |
| 1101 ":fake_server_jni", | 1103 ":fake_server_jni", |
| 1102 ":sync", | 1104 ":sync", |
| 1103 ":test_support_sync_fake_server", | 1105 ":test_support_sync_fake_server", |
| 1104 "//base", | 1106 "//base", |
| 1105 "//testing/gtest", | 1107 "//testing/gtest", |
| 1106 "//url:url", | 1108 "//url:url", |
| 1107 ] | 1109 ] |
| 1108 } | 1110 } |
| 1109 } | 1111 } |
| OLD | NEW |