| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//components/sync/protocol/protocol_sources.gni") | 7 import("//components/sync/protocol/protocol_sources.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 static_library("sync") { | 10 static_library("sync") { |
| (...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1073 deps = [ | 1073 deps = [ |
| 1074 ":test_support_sync_proto_java_prepare", | 1074 ":test_support_sync_proto_java_prepare", |
| 1075 ] | 1075 ] |
| 1076 } | 1076 } |
| 1077 | 1077 |
| 1078 android_library("sync_java_test_support") { | 1078 android_library("sync_java_test_support") { |
| 1079 testonly = true | 1079 testonly = true |
| 1080 deps = [ | 1080 deps = [ |
| 1081 "android:sync_java", | 1081 "android:sync_java", |
| 1082 "//base:base_java", | 1082 "//base:base_java", |
| 1083 "//base:base_java_test_support", | |
| 1084 "//third_party/jsr-305:jsr_305_javalib", | |
| 1085 ] | 1083 ] |
| 1086 java_files = [ | 1084 java_files = [ "test/android/javatests/src/org/chromium/components/sync/test
/util/MockSyncContentResolverDelegate.java" ] |
| 1087 "test/android/javatests/src/org/chromium/components/sync/test/util/Account
Holder.java", | |
| 1088 "test/android/javatests/src/org/chromium/components/sync/test/util/MockAcc
ountManager.java", | |
| 1089 "test/android/javatests/src/org/chromium/components/sync/test/util/MockSyn
cContentResolverDelegate.java", | |
| 1090 "test/android/javatests/src/org/chromium/components/sync/test/util/SimpleF
uture.java", | |
| 1091 ] | |
| 1092 } | 1085 } |
| 1093 | 1086 |
| 1094 static_library("test_support_sync_fake_server_android") { | 1087 static_library("test_support_sync_fake_server_android") { |
| 1095 testonly = true | 1088 testonly = true |
| 1096 sources = [ | 1089 sources = [ |
| 1097 "test/fake_server/android/fake_server_helper_android.cc", | 1090 "test/fake_server/android/fake_server_helper_android.cc", |
| 1098 "test/fake_server/android/fake_server_helper_android.h", | 1091 "test/fake_server/android/fake_server_helper_android.h", |
| 1099 ] | 1092 ] |
| 1100 deps = [ | 1093 deps = [ |
| 1101 ":fake_server_jni", | 1094 ":fake_server_jni", |
| 1102 ":sync", | 1095 ":sync", |
| 1103 ":test_support_sync_fake_server", | 1096 ":test_support_sync_fake_server", |
| 1104 "//base", | 1097 "//base", |
| 1105 "//testing/gtest", | 1098 "//testing/gtest", |
| 1106 "//url:url", | 1099 "//url:url", |
| 1107 ] | 1100 ] |
| 1108 } | 1101 } |
| 1109 } | 1102 } |
| OLD | NEW |