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