| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("sync") { | 8 component("sync") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":sync_core", | 10 ":sync_core", |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 static_library("test_support_sync_core") { | 435 static_library("test_support_sync_core") { |
| 436 testonly = true | 436 testonly = true |
| 437 sources = [ | 437 sources = [ |
| 438 "internal_api/public/base/model_type_test_util.cc", | 438 "internal_api/public/base/model_type_test_util.cc", |
| 439 "internal_api/public/base/model_type_test_util.h", | 439 "internal_api/public/base/model_type_test_util.h", |
| 440 "js/js_test_util.cc", | 440 "js/js_test_util.cc", |
| 441 "js/js_test_util.h", | 441 "js/js_test_util.h", |
| 442 "sessions/test_util.cc", | 442 "sessions/test_util.cc", |
| 443 "sessions/test_util.h", | 443 "sessions/test_util.h", |
| 444 "test/callback_counter.h", | 444 "test/callback_counter.h", |
| 445 "test/directory_backing_store_corruption_testing.cc", |
| 446 "test/directory_backing_store_corruption_testing.h", |
| 445 "test/engine/fake_model_worker.cc", | 447 "test/engine/fake_model_worker.cc", |
| 446 "test/engine/fake_model_worker.h", | 448 "test/engine/fake_model_worker.h", |
| 447 "test/engine/fake_sync_scheduler.cc", | 449 "test/engine/fake_sync_scheduler.cc", |
| 448 "test/engine/fake_sync_scheduler.h", | 450 "test/engine/fake_sync_scheduler.h", |
| 449 "test/engine/injectable_sync_context_proxy.cc", | 451 "test/engine/injectable_sync_context_proxy.cc", |
| 450 "test/engine/injectable_sync_context_proxy.h", | 452 "test/engine/injectable_sync_context_proxy.h", |
| 451 "test/engine/mock_connection_manager.cc", | 453 "test/engine/mock_connection_manager.cc", |
| 452 "test/engine/mock_connection_manager.h", | 454 "test/engine/mock_connection_manager.h", |
| 453 "test/engine/mock_model_type_sync_proxy.cc", | 455 "test/engine/mock_model_type_sync_proxy.cc", |
| 454 "test/engine/mock_model_type_sync_proxy.h", | 456 "test/engine/mock_model_type_sync_proxy.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 479 "test/null_transaction_observer.h", | 481 "test/null_transaction_observer.h", |
| 480 "test/sessions/mock_debug_info_getter.cc", | 482 "test/sessions/mock_debug_info_getter.cc", |
| 481 "test/sessions/mock_debug_info_getter.h", | 483 "test/sessions/mock_debug_info_getter.h", |
| 482 "test/sessions/test_scoped_session_event_listener.h", | 484 "test/sessions/test_scoped_session_event_listener.h", |
| 483 "test/test_directory_backing_store.cc", | 485 "test/test_directory_backing_store.cc", |
| 484 "test/test_directory_backing_store.h", | 486 "test/test_directory_backing_store.h", |
| 485 "test/test_transaction_observer.cc", | 487 "test/test_transaction_observer.cc", |
| 486 "test/test_transaction_observer.h", | 488 "test/test_transaction_observer.h", |
| 487 "test/trackable_mock_invalidation.cc", | 489 "test/trackable_mock_invalidation.cc", |
| 488 "test/trackable_mock_invalidation.h", | 490 "test/trackable_mock_invalidation.h", |
| 491 "util/mock_unrecoverable_error_handler.cc", |
| 492 "util/mock_unrecoverable_error_handler.h", |
| 489 "util/test_unrecoverable_error_handler.cc", | 493 "util/test_unrecoverable_error_handler.cc", |
| 490 "util/test_unrecoverable_error_handler.h", | 494 "util/test_unrecoverable_error_handler.h", |
| 491 ] | 495 ] |
| 492 | 496 |
| 493 public_deps = [ | 497 public_deps = [ |
| 494 "//base", | 498 "//base", |
| 495 "//testing/gmock", | 499 "//testing/gmock", |
| 496 "//testing/gtest", | 500 "//testing/gtest", |
| 497 "//sync", | 501 "//sync", |
| 498 ] | 502 ] |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 ":fake_server_jni", | 826 ":fake_server_jni", |
| 823 ":sync_core", | 827 ":sync_core", |
| 824 ":test_support_sync_fake_server", | 828 ":test_support_sync_fake_server", |
| 825 "//base", | 829 "//base", |
| 826 "//sync/protocol:protocol", | 830 "//sync/protocol:protocol", |
| 827 "//testing/gtest", | 831 "//testing/gtest", |
| 828 "//url:url", | 832 "//url:url", |
| 829 ] | 833 ] |
| 830 } | 834 } |
| 831 } | 835 } |
| OLD | NEW |