| 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 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 "api/fake_model_type_change_processor.cc", | 709 "api/fake_model_type_change_processor.cc", |
| 710 "api/fake_model_type_change_processor.h", | 710 "api/fake_model_type_change_processor.h", |
| 711 "api/fake_model_type_service.cc", | 711 "api/fake_model_type_service.cc", |
| 712 "api/fake_model_type_service.h", | 712 "api/fake_model_type_service.h", |
| 713 "api/fake_sync_change_processor.cc", | 713 "api/fake_sync_change_processor.cc", |
| 714 "api/fake_sync_change_processor.h", | 714 "api/fake_sync_change_processor.h", |
| 715 "api/fake_syncable_service.cc", | 715 "api/fake_syncable_service.cc", |
| 716 "api/fake_syncable_service.h", | 716 "api/fake_syncable_service.h", |
| 717 "api/mock_model_type_store.cc", | 717 "api/mock_model_type_store.cc", |
| 718 "api/mock_model_type_store.h", | 718 "api/mock_model_type_store.h", |
| 719 "api/stub_model_type_service.cc", |
| 720 "api/stub_model_type_service.h", |
| 719 "api/sync_change_processor_wrapper_for_test.cc", | 721 "api/sync_change_processor_wrapper_for_test.cc", |
| 720 "api/sync_change_processor_wrapper_for_test.h", | 722 "api/sync_change_processor_wrapper_for_test.h", |
| 721 "api/sync_error_factory_mock.cc", | 723 "api/sync_error_factory_mock.cc", |
| 722 "api/sync_error_factory_mock.h", | 724 "api/sync_error_factory_mock.h", |
| 723 ] | 725 ] |
| 724 | 726 |
| 725 defines = [ "SYNC_TEST" ] | 727 defines = [ "SYNC_TEST" ] |
| 726 | 728 |
| 727 public_deps = [ | 729 public_deps = [ |
| 728 "//base", | 730 "//base", |
| 729 "//components/sync", | 731 "//components/sync", |
| 730 "//testing/gmock", | 732 "//testing/gmock", |
| 733 "//testing/gtest", |
| 731 ] | 734 ] |
| 732 } | 735 } |
| 733 | 736 |
| 734 static_library("test_support_sync_driver") { | 737 static_library("test_support_sync_driver") { |
| 735 testonly = true | 738 testonly = true |
| 736 sources = [ | 739 sources = [ |
| 737 "device_info/local_device_info_provider_mock.cc", | 740 "device_info/local_device_info_provider_mock.cc", |
| 738 "device_info/local_device_info_provider_mock.h", | 741 "device_info/local_device_info_provider_mock.h", |
| 739 "driver/change_processor_mock.cc", | 742 "driver/change_processor_mock.cc", |
| 740 "driver/change_processor_mock.h", | 743 "driver/change_processor_mock.h", |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 deps = [ | 1098 deps = [ |
| 1096 ":fake_server_jni", | 1099 ":fake_server_jni", |
| 1097 ":sync", | 1100 ":sync", |
| 1098 ":test_support_sync_fake_server", | 1101 ":test_support_sync_fake_server", |
| 1099 "//base", | 1102 "//base", |
| 1100 "//testing/gtest", | 1103 "//testing/gtest", |
| 1101 "//url:url", | 1104 "//url:url", |
| 1102 ] | 1105 ] |
| 1103 } | 1106 } |
| 1104 } | 1107 } |
| OLD | NEW |