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("//sync/protocol/protocol_sources.gni") | 6 import("//sync/protocol/protocol_sources.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 | 8 |
9 component("sync") { | 9 component("sync") { |
10 public_deps = [ | 10 public_deps = [ |
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
547 ] | 547 ] |
548 | 548 |
549 defines = [ "SYNC_TEST" ] | 549 defines = [ "SYNC_TEST" ] |
550 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 550 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
551 } | 551 } |
552 | 552 |
553 # GYP version: sync/sync_tests.gypi:test_support_sync_internal_api | 553 # GYP version: sync/sync_tests.gypi:test_support_sync_internal_api |
554 static_library("test_support_sync_internal_api") { | 554 static_library("test_support_sync_internal_api") { |
555 testonly = true | 555 testonly = true |
556 sources = [ | 556 sources = [ |
| 557 "internal_api/public/test/fake_model_type_service.h", |
557 "internal_api/public/test/fake_sync_manager.h", | 558 "internal_api/public/test/fake_sync_manager.h", |
558 "internal_api/public/test/null_sync_context_proxy.h", | 559 "internal_api/public/test/null_sync_context_proxy.h", |
559 "internal_api/public/test/sync_manager_factory_for_profile_sync_test.h", | 560 "internal_api/public/test/sync_manager_factory_for_profile_sync_test.h", |
560 "internal_api/public/test/test_entry_factory.h", | 561 "internal_api/public/test/test_entry_factory.h", |
561 "internal_api/public/test/test_internal_components_factory.h", | 562 "internal_api/public/test/test_internal_components_factory.h", |
562 "internal_api/public/test/test_user_share.h", | 563 "internal_api/public/test/test_user_share.h", |
| 564 "internal_api/test/fake_model_type_service.cc", |
563 "internal_api/test/fake_sync_manager.cc", | 565 "internal_api/test/fake_sync_manager.cc", |
564 "internal_api/test/null_sync_context_proxy.cc", | 566 "internal_api/test/null_sync_context_proxy.cc", |
565 "internal_api/test/sync_manager_factory_for_profile_sync_test.cc", | 567 "internal_api/test/sync_manager_factory_for_profile_sync_test.cc", |
566 "internal_api/test/sync_manager_for_profile_sync_test.cc", | 568 "internal_api/test/sync_manager_for_profile_sync_test.cc", |
567 "internal_api/test/sync_manager_for_profile_sync_test.h", | 569 "internal_api/test/sync_manager_for_profile_sync_test.h", |
568 "internal_api/test/test_entry_factory.cc", | 570 "internal_api/test/test_entry_factory.cc", |
569 "internal_api/test/test_internal_components_factory.cc", | 571 "internal_api/test/test_internal_components_factory.cc", |
570 "internal_api/test/test_user_share.cc", | 572 "internal_api/test/test_user_share.cc", |
571 ] | 573 ] |
572 | 574 |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 ":fake_server_jni", | 897 ":fake_server_jni", |
896 ":sync_core", | 898 ":sync_core", |
897 ":test_support_sync_fake_server", | 899 ":test_support_sync_fake_server", |
898 "//base", | 900 "//base", |
899 "//sync/protocol:protocol", | 901 "//sync/protocol:protocol", |
900 "//testing/gtest", | 902 "//testing/gtest", |
901 "//url:url", | 903 "//url:url", |
902 ] | 904 ] |
903 } | 905 } |
904 } | 906 } |
OLD | NEW |