| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 "core/read_transaction.h", | 168 "core/read_transaction.h", |
| 169 "core/shared_model_type_processor.cc", | 169 "core/shared_model_type_processor.cc", |
| 170 "core/shared_model_type_processor.h", | 170 "core/shared_model_type_processor.h", |
| 171 "core/shutdown_reason.h", | 171 "core/shutdown_reason.h", |
| 172 "core/simple_metadata_change_list.cc", | 172 "core/simple_metadata_change_list.cc", |
| 173 "core/simple_metadata_change_list.h", | 173 "core/simple_metadata_change_list.h", |
| 174 "core/sync_auth_provider.h", | 174 "core/sync_auth_provider.h", |
| 175 "core/sync_db_util.cc", | 175 "core/sync_db_util.cc", |
| 176 "core/sync_encryption_handler.cc", | 176 "core/sync_encryption_handler.cc", |
| 177 "core/sync_encryption_handler.h", | 177 "core/sync_encryption_handler.h", |
| 178 "core/sync_features.cc", |
| 179 "core/sync_features.h", |
| 178 "core/sync_manager.cc", | 180 "core/sync_manager.cc", |
| 179 "core/sync_manager.h", | 181 "core/sync_manager.h", |
| 180 "core/sync_manager_factory.cc", | 182 "core/sync_manager_factory.cc", |
| 181 "core/sync_manager_factory.h", | 183 "core/sync_manager_factory.h", |
| 182 "core/user_share.cc", | 184 "core/user_share.cc", |
| 183 "core/user_share.h", | 185 "core/user_share.h", |
| 184 "core/write_node.cc", | 186 "core/write_node.cc", |
| 185 "core/write_node.h", | 187 "core/write_node.h", |
| 186 "core/write_transaction.cc", | 188 "core/write_transaction.cc", |
| 187 "core/write_transaction.h", | 189 "core/write_transaction.h", |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1093 deps = [ | 1095 deps = [ |
| 1094 ":fake_server_jni", | 1096 ":fake_server_jni", |
| 1095 ":sync", | 1097 ":sync", |
| 1096 ":test_support_sync_fake_server", | 1098 ":test_support_sync_fake_server", |
| 1097 "//base", | 1099 "//base", |
| 1098 "//testing/gtest", | 1100 "//testing/gtest", |
| 1099 "//url:url", | 1101 "//url:url", |
| 1100 ] | 1102 ] |
| 1101 } | 1103 } |
| 1102 } | 1104 } |
| OLD | NEW |