| 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 | 794 |
| 795 if (is_android) { | 795 if (is_android) { |
| 796 import("//build/config/android/rules.gni") | 796 import("//build/config/android/rules.gni") |
| 797 | 797 |
| 798 # GYP: //sync/sync_tests.gypi:fake_server_jni | 798 # GYP: //sync/sync_tests.gypi:fake_server_jni |
| 799 generate_jni("fake_server_jni") { | 799 generate_jni("fake_server_jni") { |
| 800 testonly = true | 800 testonly = true |
| 801 jni_package = "sync/test/fake_server" | 801 jni_package = "sync/test/fake_server" |
| 802 sources = [ | 802 sources = [ |
| 803 "//chrome/android/sync_shell/javatests/src/chromium/chrome/browser/sync/Fa
keServerHelper.java", | 803 "//chrome/android/sync_shell/javatests/src/org/chromium/chrome/browser/syn
c/FakeServerHelper.java", |
| 804 ] | 804 ] |
| 805 } | 805 } |
| 806 | 806 |
| 807 # GYP: //sync/sync_tests.gypi:sync_java_test_support | 807 # GYP: //sync/sync_tests.gypi:sync_java_test_support |
| 808 android_library("sync_java_test_support") { | 808 android_library("sync_java_test_support") { |
| 809 testonly = true | 809 testonly = true |
| 810 deps = [ | 810 deps = [ |
| 811 "android:sync_java", | 811 "android:sync_java", |
| 812 "//base:base_java", | 812 "//base:base_java", |
| 813 "//base:base_java_test_support", | 813 "//base:base_java_test_support", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 827 ":fake_server_jni", | 827 ":fake_server_jni", |
| 828 ":sync_core", | 828 ":sync_core", |
| 829 ":test_support_sync_fake_server", | 829 ":test_support_sync_fake_server", |
| 830 "//base", | 830 "//base", |
| 831 "//sync/protocol:protocol", | 831 "//sync/protocol:protocol", |
| 832 "//testing/gtest", | 832 "//testing/gtest", |
| 833 "//url:url", | 833 "//url:url", |
| 834 ] | 834 ] |
| 835 } | 835 } |
| 836 } | 836 } |
| OLD | NEW |