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 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 | 673 |
674 static_library("test_support_engine") { | 674 static_library("test_support_engine") { |
675 testonly = true | 675 testonly = true |
676 sources = [ | 676 sources = [ |
677 "engine/fake_model_type_connector.cc", | 677 "engine/fake_model_type_connector.cc", |
678 "engine/fake_model_type_connector.h", | 678 "engine/fake_model_type_connector.h", |
679 "engine/fake_model_type_processor.cc", | 679 "engine/fake_model_type_processor.cc", |
680 "engine/fake_model_type_processor.h", | 680 "engine/fake_model_type_processor.h", |
681 "engine/fake_sync_manager.cc", | 681 "engine/fake_sync_manager.cc", |
682 "engine/fake_sync_manager.h", | 682 "engine/fake_sync_manager.h", |
| 683 "engine/sync_engine_host_stub.cc", |
| 684 "engine/sync_engine_host_stub.h", |
683 "engine/sync_manager_factory_for_profile_sync_test.cc", | 685 "engine/sync_manager_factory_for_profile_sync_test.cc", |
684 "engine/sync_manager_factory_for_profile_sync_test.h", | 686 "engine/sync_manager_factory_for_profile_sync_test.h", |
685 "engine/test_engine_components_factory.cc", | 687 "engine/test_engine_components_factory.cc", |
686 "engine/test_engine_components_factory.h", | 688 "engine/test_engine_components_factory.h", |
687 "engine_impl/cycle/mock_debug_info_getter.cc", | 689 "engine_impl/cycle/mock_debug_info_getter.cc", |
688 "engine_impl/cycle/mock_debug_info_getter.h", | 690 "engine_impl/cycle/mock_debug_info_getter.h", |
689 "engine_impl/cycle/test_util.cc", | 691 "engine_impl/cycle/test_util.cc", |
690 "engine_impl/cycle/test_util.h", | 692 "engine_impl/cycle/test_util.h", |
691 "engine_impl/sync_manager_for_profile_sync_test.cc", | 693 "engine_impl/sync_manager_for_profile_sync_test.cc", |
692 "engine_impl/sync_manager_for_profile_sync_test.h", | 694 "engine_impl/sync_manager_for_profile_sync_test.h", |
(...skipping 441 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 |