| 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 "model/fake_model_type_sync_bridge.cc", | 753 "model/fake_model_type_sync_bridge.cc", |
| 754 "model/fake_model_type_sync_bridge.h", | 754 "model/fake_model_type_sync_bridge.h", |
| 755 "model/fake_sync_change_processor.cc", | 755 "model/fake_sync_change_processor.cc", |
| 756 "model/fake_sync_change_processor.h", | 756 "model/fake_sync_change_processor.h", |
| 757 "model/fake_syncable_service.cc", | 757 "model/fake_syncable_service.cc", |
| 758 "model/fake_syncable_service.h", | 758 "model/fake_syncable_service.h", |
| 759 "model/mock_model_type_store.cc", | 759 "model/mock_model_type_store.cc", |
| 760 "model/mock_model_type_store.h", | 760 "model/mock_model_type_store.h", |
| 761 "model/model_type_store_test_util.cc", | 761 "model/model_type_store_test_util.cc", |
| 762 "model/model_type_store_test_util.h", | 762 "model/model_type_store_test_util.h", |
| 763 "model/recording_model_type_change_processor.cc", |
| 764 "model/recording_model_type_change_processor.h", |
| 763 "model/stub_model_type_sync_bridge.cc", | 765 "model/stub_model_type_sync_bridge.cc", |
| 764 "model/stub_model_type_sync_bridge.h", | 766 "model/stub_model_type_sync_bridge.h", |
| 765 "model/sync_change_processor_wrapper_for_test.cc", | 767 "model/sync_change_processor_wrapper_for_test.cc", |
| 766 "model/sync_change_processor_wrapper_for_test.h", | 768 "model/sync_change_processor_wrapper_for_test.h", |
| 767 "model/sync_error_factory_mock.cc", | 769 "model/sync_error_factory_mock.cc", |
| 768 "model/sync_error_factory_mock.h", | 770 "model/sync_error_factory_mock.h", |
| 769 ] | 771 ] |
| 770 | 772 |
| 771 defines = [ "SYNC_TEST" ] | 773 defines = [ "SYNC_TEST" ] |
| 772 | 774 |
| (...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1138 deps = [ | 1140 deps = [ |
| 1139 ":fake_server_jni", | 1141 ":fake_server_jni", |
| 1140 ":sync", | 1142 ":sync", |
| 1141 ":test_support_fake_server", | 1143 ":test_support_fake_server", |
| 1142 "//base", | 1144 "//base", |
| 1143 "//testing/gtest", | 1145 "//testing/gtest", |
| 1144 "//url:url", | 1146 "//url:url", |
| 1145 ] | 1147 ] |
| 1146 } | 1148 } |
| 1147 } | 1149 } |
| OLD | NEW |