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