| 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 744 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 755 "test/fake_server/tombstone_entity.cc", | 755 "test/fake_server/tombstone_entity.cc", |
| 756 "test/fake_server/tombstone_entity.h", | 756 "test/fake_server/tombstone_entity.h", |
| 757 "test/fake_server/unique_client_entity.cc", | 757 "test/fake_server/unique_client_entity.cc", |
| 758 "test/fake_server/unique_client_entity.h", | 758 "test/fake_server/unique_client_entity.h", |
| 759 ] | 759 ] |
| 760 | 760 |
| 761 deps = [ | 761 deps = [ |
| 762 "//base", | 762 "//base", |
| 763 "//net", | 763 "//net", |
| 764 "//testing/gtest", | 764 "//testing/gtest", |
| 765 "//third_party/protobuf:protobuf_lite", | |
| 766 "//sync", | 765 "//sync", |
| 767 "//url", | 766 "//url", |
| 768 ] | 767 ] |
| 769 | 768 |
| 770 forward_dependent_configs_from = [ "//third_party/protobuf:protobuf_lite" ] | 769 public_deps = [ |
| 770 "//third_party/protobuf:protobuf_lite", |
| 771 ] |
| 771 | 772 |
| 772 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 773 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
| 773 } | 774 } |
| 774 | 775 |
| 775 # GYP version: sync/sync_tests.gypi:test_support_sync_testserver | 776 # GYP version: sync/sync_tests.gypi:test_support_sync_testserver |
| 776 static_library("test_support_sync_testserver") { | 777 static_library("test_support_sync_testserver") { |
| 777 testonly = true | 778 testonly = true |
| 778 sources = [ | 779 sources = [ |
| 779 "test/local_sync_test_server.cc", | 780 "test/local_sync_test_server.cc", |
| 780 "test/local_sync_test_server.h", | 781 "test/local_sync_test_server.h", |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 847 ":fake_server_jni", | 848 ":fake_server_jni", |
| 848 ":sync_core", | 849 ":sync_core", |
| 849 ":test_support_sync_fake_server", | 850 ":test_support_sync_fake_server", |
| 850 "//base", | 851 "//base", |
| 851 "//sync/protocol:protocol", | 852 "//sync/protocol:protocol", |
| 852 "//testing/gtest", | 853 "//testing/gtest", |
| 853 "//url:url", | 854 "//url:url", |
| 854 ] | 855 ] |
| 855 } | 856 } |
| 856 } | 857 } |
| OLD | NEW |