| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "engine/net/http_post_provider_factory.h", | 235 "engine/net/http_post_provider_factory.h", |
| 236 "engine/net/http_post_provider_interface.h", | 236 "engine/net/http_post_provider_interface.h", |
| 237 "engine/net/network_resources.h", | 237 "engine/net/network_resources.h", |
| 238 "engine/non_blocking_sync_common.cc", | 238 "engine/non_blocking_sync_common.cc", |
| 239 "engine/non_blocking_sync_common.h", | 239 "engine/non_blocking_sync_common.h", |
| 240 "engine/passive_model_worker.cc", | 240 "engine/passive_model_worker.cc", |
| 241 "engine/passive_model_worker.h", | 241 "engine/passive_model_worker.h", |
| 242 "engine/polling_constants.cc", | 242 "engine/polling_constants.cc", |
| 243 "engine/polling_constants.h", | 243 "engine/polling_constants.h", |
| 244 "engine/shutdown_reason.h", | 244 "engine/shutdown_reason.h", |
| 245 "engine/signal_event_on_delete.cc", |
| 246 "engine/signal_event_on_delete.h", |
| 245 "engine/sync_auth_provider.h", | 247 "engine/sync_auth_provider.h", |
| 246 "engine/sync_encryption_handler.cc", | 248 "engine/sync_encryption_handler.cc", |
| 247 "engine/sync_encryption_handler.h", | 249 "engine/sync_encryption_handler.h", |
| 248 "engine/sync_manager.cc", | 250 "engine/sync_manager.cc", |
| 249 "engine/sync_manager.h", | 251 "engine/sync_manager.h", |
| 250 "engine/sync_manager_factory.cc", | 252 "engine/sync_manager_factory.cc", |
| 251 "engine/sync_manager_factory.h", | 253 "engine/sync_manager_factory.h", |
| 252 "engine/sync_status.cc", | 254 "engine/sync_status.cc", |
| 253 "engine/sync_status.h", | 255 "engine/sync_status.h", |
| 254 "engine/sync_string_conversions.cc", | 256 "engine/sync_string_conversions.cc", |
| (...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 deps = [ | 1129 deps = [ |
| 1128 ":fake_server_jni", | 1130 ":fake_server_jni", |
| 1129 ":sync", | 1131 ":sync", |
| 1130 ":test_support_fake_server", | 1132 ":test_support_fake_server", |
| 1131 "//base", | 1133 "//base", |
| 1132 "//testing/gtest", | 1134 "//testing/gtest", |
| 1133 "//url:url", | 1135 "//url:url", |
| 1134 ] | 1136 ] |
| 1135 } | 1137 } |
| 1136 } | 1138 } |
| OLD | NEW |