| 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 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 872 sources = get_target_outputs(":test_support_sync_proto_java_prepare") | 872 sources = get_target_outputs(":test_support_sync_proto_java_prepare") |
| 873 deps = [ | 873 deps = [ |
| 874 ":test_support_sync_proto_java_prepare", | 874 ":test_support_sync_proto_java_prepare", |
| 875 ] | 875 ] |
| 876 } | 876 } |
| 877 | 877 |
| 878 # GYP: //sync/sync_tests.gypi:sync_java_test_support | 878 # GYP: //sync/sync_tests.gypi:sync_java_test_support |
| 879 android_library("sync_java_test_support") { | 879 android_library("sync_java_test_support") { |
| 880 testonly = true | 880 testonly = true |
| 881 deps = [ | 881 deps = [ |
| 882 "android:sync_java", |
| 882 "//base:base_java", | 883 "//base:base_java", |
| 883 "//base:base_java_test_support", | 884 "//base:base_java_test_support", |
| 884 "//third_party/jsr-305:jsr_305_javalib", | 885 "//third_party/jsr-305:jsr_305_javalib", |
| 885 "android:sync_java", | |
| 886 ] | 886 ] |
| 887 DEPRECATED_java_in_dir = "test/android/javatests/src" | 887 DEPRECATED_java_in_dir = "test/android/javatests/src" |
| 888 } | 888 } |
| 889 | 889 |
| 890 # GYP: //sync/sync_tests.gypi:test_support_sync_fake_server_android | 890 # GYP: //sync/sync_tests.gypi:test_support_sync_fake_server_android |
| 891 static_library("test_support_sync_fake_server_android") { | 891 static_library("test_support_sync_fake_server_android") { |
| 892 testonly = true | 892 testonly = true |
| 893 sources = [ | 893 sources = [ |
| 894 "test/fake_server/android/fake_server_helper_android.cc", | 894 "test/fake_server/android/fake_server_helper_android.cc", |
| 895 "test/fake_server/android/fake_server_helper_android.h", | 895 "test/fake_server/android/fake_server_helper_android.h", |
| 896 ] | 896 ] |
| 897 deps = [ | 897 deps = [ |
| 898 ":fake_server_jni", | 898 ":fake_server_jni", |
| 899 ":sync_core", | 899 ":sync_core", |
| 900 ":test_support_sync_fake_server", | 900 ":test_support_sync_fake_server", |
| 901 "//base", | 901 "//base", |
| 902 "//sync/protocol:protocol", | 902 "//sync/protocol:protocol", |
| 903 "//testing/gtest", | 903 "//testing/gtest", |
| 904 "//url:url", | 904 "//url:url", |
| 905 ] | 905 ] |
| 906 } | 906 } |
| 907 } | 907 } |
| OLD | NEW |