| 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 641 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 652 "engine_impl/cycle/mock_debug_info_getter.cc", | 652 "engine_impl/cycle/mock_debug_info_getter.cc", |
| 653 "engine_impl/cycle/mock_debug_info_getter.h", | 653 "engine_impl/cycle/mock_debug_info_getter.h", |
| 654 "engine_impl/cycle/test_util.cc", | 654 "engine_impl/cycle/test_util.cc", |
| 655 "engine_impl/cycle/test_util.h", | 655 "engine_impl/cycle/test_util.h", |
| 656 "engine_impl/sync_manager_for_profile_sync_test.cc", | 656 "engine_impl/sync_manager_for_profile_sync_test.cc", |
| 657 "engine_impl/sync_manager_for_profile_sync_test.h", | 657 "engine_impl/sync_manager_for_profile_sync_test.h", |
| 658 "engine_impl/test_entry_factory.cc", | 658 "engine_impl/test_entry_factory.cc", |
| 659 "engine_impl/test_entry_factory.h", | 659 "engine_impl/test_entry_factory.h", |
| 660 "syncable/test_user_share.cc", | 660 "syncable/test_user_share.cc", |
| 661 "syncable/test_user_share.h", | 661 "syncable/test_user_share.h", |
| 662 "test/directory_backing_store_corruption_testing.cc", | |
| 663 "test/directory_backing_store_corruption_testing.h", | |
| 664 "test/engine/fake_model_worker.cc", | 662 "test/engine/fake_model_worker.cc", |
| 665 "test/engine/fake_model_worker.h", | 663 "test/engine/fake_model_worker.h", |
| 666 "test/engine/fake_sync_scheduler.cc", | 664 "test/engine/fake_sync_scheduler.cc", |
| 667 "test/engine/fake_sync_scheduler.h", | 665 "test/engine/fake_sync_scheduler.h", |
| 668 "test/engine/mock_connection_manager.cc", | 666 "test/engine/mock_connection_manager.cc", |
| 669 "test/engine/mock_connection_manager.h", | 667 "test/engine/mock_connection_manager.h", |
| 670 "test/engine/mock_model_type_processor.cc", | 668 "test/engine/mock_model_type_processor.cc", |
| 671 "test/engine/mock_model_type_processor.h", | 669 "test/engine/mock_model_type_processor.h", |
| 672 "test/engine/mock_model_type_worker.cc", | 670 "test/engine/mock_model_type_worker.cc", |
| 673 "test/engine/mock_model_type_worker.h", | 671 "test/engine/mock_model_type_worker.h", |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1095 deps = [ | 1093 deps = [ |
| 1096 ":fake_server_jni", | 1094 ":fake_server_jni", |
| 1097 ":sync", | 1095 ":sync", |
| 1098 ":test_support_fake_server", | 1096 ":test_support_fake_server", |
| 1099 "//base", | 1097 "//base", |
| 1100 "//testing/gtest", | 1098 "//testing/gtest", |
| 1101 "//url:url", | 1099 "//url:url", |
| 1102 ] | 1100 ] |
| 1103 } | 1101 } |
| 1104 } | 1102 } |
| OLD | NEW |