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