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 783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
794 ] | 794 ] |
795 | 795 |
796 configs += [ "//build/config/compiler:wexit_time_destructors" ] | 796 configs += [ "//build/config/compiler:wexit_time_destructors" ] |
797 | 797 |
798 public_deps = [ | 798 public_deps = [ |
799 "//base", | 799 "//base", |
800 "//net:test_support", | 800 "//net:test_support", |
801 ] | 801 ] |
802 deps = [ | 802 deps = [ |
803 ":sync", | 803 ":sync", |
| 804 |
804 # The sync test server uses Python modules generated by the sync protos. | 805 # The sync test server uses Python modules generated by the sync protos. |
805 # '../third_party/protobuf/protobuf.gyp:py_proto', # TODO(GYP) | 806 "//third_party/protobuf:py_proto", |
806 ] | 807 ] |
807 } | 808 } |
808 | 809 |
809 if (!is_ios) { | 810 if (!is_ios) { |
810 # GYP version: sync/sync_tests.gypi:run_sync_testserver | 811 # GYP version: sync/sync_tests.gypi:run_sync_testserver |
811 executable("run_sync_testserver") { | 812 executable("run_sync_testserver") { |
812 testonly = true | 813 testonly = true |
813 sources = [ | 814 sources = [ |
814 "tools/testserver/run_sync_testserver.cc", | 815 "tools/testserver/run_sync_testserver.cc", |
815 ] | 816 ] |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
890 ":fake_server_jni", | 891 ":fake_server_jni", |
891 ":sync_core", | 892 ":sync_core", |
892 ":test_support_sync_fake_server", | 893 ":test_support_sync_fake_server", |
893 "//base", | 894 "//base", |
894 "//sync/protocol:protocol", | 895 "//sync/protocol:protocol", |
895 "//testing/gtest", | 896 "//testing/gtest", |
896 "//url:url", | 897 "//url:url", |
897 ] | 898 ] |
898 } | 899 } |
899 } | 900 } |
OLD | NEW |