| 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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 | 793 |
| 794 if (!is_ios) { | 794 if (!is_ios) { |
| 795 # GYP version: sync/sync_tests.gypi:run_sync_testserver | 795 # GYP version: sync/sync_tests.gypi:run_sync_testserver |
| 796 executable("run_sync_testserver") { | 796 executable("run_sync_testserver") { |
| 797 testonly = true | 797 testonly = true |
| 798 sources = [ | 798 sources = [ |
| 799 "tools/testserver/run_sync_testserver.cc", | 799 "tools/testserver/run_sync_testserver.cc", |
| 800 ] | 800 ] |
| 801 | 801 |
| 802 deps = [ | 802 deps = [ |
| 803 ":test_support_sync_testserver", |
| 803 "//base", | 804 "//base", |
| 804 "//base/test:test_support", | 805 "//base/test:test_support", |
| 806 "//build/config/sanitizers:deps", |
| 805 "//net:test_support", | 807 "//net:test_support", |
| 806 "//testing/gtest", | 808 "//testing/gtest", |
| 807 ":test_support_sync_testserver", | |
| 808 ] | 809 ] |
| 809 } | 810 } |
| 810 } | 811 } |
| 811 | 812 |
| 812 if (is_android) { | 813 if (is_android) { |
| 813 import("//build/config/android/rules.gni") | 814 import("//build/config/android/rules.gni") |
| 814 | 815 |
| 815 # GYP: //sync/sync_tests.gypi:fake_server_jni | 816 # GYP: //sync/sync_tests.gypi:fake_server_jni |
| 816 generate_jni("fake_server_jni") { | 817 generate_jni("fake_server_jni") { |
| 817 testonly = true | 818 testonly = true |
| (...skipping 26 matching lines...) Expand all Loading... |
| 844 ":fake_server_jni", | 845 ":fake_server_jni", |
| 845 ":sync_core", | 846 ":sync_core", |
| 846 ":test_support_sync_fake_server", | 847 ":test_support_sync_fake_server", |
| 847 "//base", | 848 "//base", |
| 848 "//sync/protocol:protocol", | 849 "//sync/protocol:protocol", |
| 849 "//testing/gtest", | 850 "//testing/gtest", |
| 850 "//url:url", | 851 "//url:url", |
| 851 ] | 852 ] |
| 852 } | 853 } |
| 853 } | 854 } |
| OLD | NEW |