| 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 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 testonly = true | 812 testonly = true |
| 813 sources = [ | 813 sources = [ |
| 814 "tools/testserver/run_sync_testserver.cc", | 814 "tools/testserver/run_sync_testserver.cc", |
| 815 ] | 815 ] |
| 816 | 816 |
| 817 deps = [ | 817 deps = [ |
| 818 ":test_support_sync_testserver", | 818 ":test_support_sync_testserver", |
| 819 "//base", | 819 "//base", |
| 820 "//base/test:test_support", | 820 "//base/test:test_support", |
| 821 "//build/config/sanitizers:deps", | 821 "//build/config/sanitizers:deps", |
| 822 "//build/win:default_exe_manifest", |
| 822 "//net:test_support", | 823 "//net:test_support", |
| 823 "//testing/gtest", | 824 "//testing/gtest", |
| 824 ] | 825 ] |
| 825 } | 826 } |
| 826 } | 827 } |
| 827 | 828 |
| 828 if (is_android) { | 829 if (is_android) { |
| 829 import("//build/config/android/rules.gni") | 830 import("//build/config/android/rules.gni") |
| 830 | 831 |
| 831 # GYP: //sync/sync_tests.gypi:fake_server_jni | 832 # GYP: //sync/sync_tests.gypi:fake_server_jni |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 ":fake_server_jni", | 890 ":fake_server_jni", |
| 890 ":sync_core", | 891 ":sync_core", |
| 891 ":test_support_sync_fake_server", | 892 ":test_support_sync_fake_server", |
| 892 "//base", | 893 "//base", |
| 893 "//sync/protocol:protocol", | 894 "//sync/protocol:protocol", |
| 894 "//testing/gtest", | 895 "//testing/gtest", |
| 895 "//url:url", | 896 "//url:url", |
| 896 ] | 897 ] |
| 897 } | 898 } |
| 898 } | 899 } |
| OLD | NEW |