| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 "engine_impl/get_commit_ids.cc", | 421 "engine_impl/get_commit_ids.cc", |
| 422 "engine_impl/get_commit_ids.h", | 422 "engine_impl/get_commit_ids.h", |
| 423 "engine_impl/get_updates_delegate.cc", | 423 "engine_impl/get_updates_delegate.cc", |
| 424 "engine_impl/get_updates_delegate.h", | 424 "engine_impl/get_updates_delegate.h", |
| 425 "engine_impl/get_updates_processor.cc", | 425 "engine_impl/get_updates_processor.cc", |
| 426 "engine_impl/get_updates_processor.h", | 426 "engine_impl/get_updates_processor.h", |
| 427 "engine_impl/model_type_registry.cc", | 427 "engine_impl/model_type_registry.cc", |
| 428 "engine_impl/model_type_registry.h", | 428 "engine_impl/model_type_registry.h", |
| 429 "engine_impl/model_type_worker.cc", | 429 "engine_impl/model_type_worker.cc", |
| 430 "engine_impl/model_type_worker.h", | 430 "engine_impl/model_type_worker.h", |
| 431 "engine_impl/net/loopback_connection_manager.cc", |
| 432 "engine_impl/net/loopback_connection_manager.h", |
| 433 "engine_impl/net/loopback_server/bookmark_entity.cc", |
| 434 "engine_impl/net/loopback_server/bookmark_entity.h", |
| 435 "engine_impl/net/loopback_server/loopback_server.cc", |
| 436 "engine_impl/net/loopback_server/loopback_server.h", |
| 437 "engine_impl/net/loopback_server/loopback_server_entity.cc", |
| 438 "engine_impl/net/loopback_server/loopback_server_entity.h", |
| 439 "engine_impl/net/loopback_server/permanent_entity.cc", |
| 440 "engine_impl/net/loopback_server/permanent_entity.h", |
| 441 "engine_impl/net/loopback_server/tombstone_entity.cc", |
| 442 "engine_impl/net/loopback_server/tombstone_entity.h", |
| 443 "engine_impl/net/loopback_server/unique_client_entity.cc", |
| 444 "engine_impl/net/loopback_server/unique_client_entity.h", |
| 431 "engine_impl/net/server_connection_manager.cc", | 445 "engine_impl/net/server_connection_manager.cc", |
| 432 "engine_impl/net/server_connection_manager.h", | 446 "engine_impl/net/server_connection_manager.h", |
| 433 "engine_impl/net/url_translator.cc", | 447 "engine_impl/net/url_translator.cc", |
| 434 "engine_impl/net/url_translator.h", | 448 "engine_impl/net/url_translator.h", |
| 435 "engine_impl/non_blocking_type_commit_contribution.cc", | 449 "engine_impl/non_blocking_type_commit_contribution.cc", |
| 436 "engine_impl/non_blocking_type_commit_contribution.h", | 450 "engine_impl/non_blocking_type_commit_contribution.h", |
| 437 "engine_impl/nudge_handler.cc", | 451 "engine_impl/nudge_handler.cc", |
| 438 "engine_impl/nudge_handler.h", | 452 "engine_impl/nudge_handler.h", |
| 439 "engine_impl/nudge_source.cc", | 453 "engine_impl/nudge_source.cc", |
| 440 "engine_impl/nudge_source.h", | 454 "engine_impl/nudge_source.h", |
| (...skipping 659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 deps = [ | 1114 deps = [ |
| 1101 ":fake_server_jni", | 1115 ":fake_server_jni", |
| 1102 ":sync", | 1116 ":sync", |
| 1103 ":test_support_sync_fake_server", | 1117 ":test_support_sync_fake_server", |
| 1104 "//base", | 1118 "//base", |
| 1105 "//testing/gtest", | 1119 "//testing/gtest", |
| 1106 "//url:url", | 1120 "//url:url", |
| 1107 ] | 1121 ] |
| 1108 } | 1122 } |
| 1109 } | 1123 } |
| OLD | NEW |