| 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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 | 857 |
| 858 # GYP: //sync/sync_tests.gypi:sync_java_test_support | 858 # GYP: //sync/sync_tests.gypi:sync_java_test_support |
| 859 android_library("sync_java_test_support") { | 859 android_library("sync_java_test_support") { |
| 860 testonly = true | 860 testonly = true |
| 861 deps = [ | 861 deps = [ |
| 862 "android:sync_java", | 862 "android:sync_java", |
| 863 "//base:base_java", | 863 "//base:base_java", |
| 864 "//base:base_java_test_support", | 864 "//base:base_java_test_support", |
| 865 "//third_party/jsr-305:jsr_305_javalib", | 865 "//third_party/jsr-305:jsr_305_javalib", |
| 866 ] | 866 ] |
| 867 DEPRECATED_java_in_dir = "test/android/javatests/src" | 867 java_files = [ |
| 868 "test/android/javatests/src/org/chromium/sync/test/util/AccountHolder.java
", |
| 869 "test/android/javatests/src/org/chromium/sync/test/util/MockAccountManager
.java", |
| 870 "test/android/javatests/src/org/chromium/sync/test/util/MockSyncContentRes
olverDelegate.java", |
| 871 "test/android/javatests/src/org/chromium/sync/test/util/SimpleFuture.java"
, |
| 872 ] |
| 868 } | 873 } |
| 869 | 874 |
| 870 # GYP: //sync/sync_tests.gypi:test_support_sync_fake_server_android | 875 # GYP: //sync/sync_tests.gypi:test_support_sync_fake_server_android |
| 871 static_library("test_support_sync_fake_server_android") { | 876 static_library("test_support_sync_fake_server_android") { |
| 872 testonly = true | 877 testonly = true |
| 873 sources = [ | 878 sources = [ |
| 874 "test/fake_server/android/fake_server_helper_android.cc", | 879 "test/fake_server/android/fake_server_helper_android.cc", |
| 875 "test/fake_server/android/fake_server_helper_android.h", | 880 "test/fake_server/android/fake_server_helper_android.h", |
| 876 ] | 881 ] |
| 877 deps = [ | 882 deps = [ |
| 878 ":fake_server_jni", | 883 ":fake_server_jni", |
| 879 ":sync_core", | 884 ":sync_core", |
| 880 ":test_support_sync_fake_server", | 885 ":test_support_sync_fake_server", |
| 881 "//base", | 886 "//base", |
| 882 "//sync/protocol:protocol", | 887 "//sync/protocol:protocol", |
| 883 "//testing/gtest", | 888 "//testing/gtest", |
| 884 "//url:url", | 889 "//url:url", |
| 885 ] | 890 ] |
| 886 } | 891 } |
| 887 } | 892 } |
| OLD | NEW |