Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: components/sync/BUILD.gn

Issue 2938553003: Revert of [sync] Replace FakeServer's implementation with LoopbackServer invocations. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after
1017 "//components/policy/core/browser", 1017 "//components/policy/core/browser",
1018 ] 1018 ]
1019 } 1019 }
1020 1020
1021 defines = [ "SYNC_TEST" ] 1021 defines = [ "SYNC_TEST" ]
1022 } 1022 }
1023 1023
1024 static_library("test_support_fake_server") { 1024 static_library("test_support_fake_server") {
1025 testonly = true 1025 testonly = true
1026 sources = [ 1026 sources = [
1027 "test/fake_server/bookmark_entity.cc",
1028 "test/fake_server/bookmark_entity.h",
1027 "test/fake_server/bookmark_entity_builder.cc", 1029 "test/fake_server/bookmark_entity_builder.cc",
1028 "test/fake_server/bookmark_entity_builder.h", 1030 "test/fake_server/bookmark_entity_builder.h",
1029 "test/fake_server/entity_builder_factory.cc", 1031 "test/fake_server/entity_builder_factory.cc",
1030 "test/fake_server/entity_builder_factory.h", 1032 "test/fake_server/entity_builder_factory.h",
1031 "test/fake_server/fake_server.cc", 1033 "test/fake_server/fake_server.cc",
1032 "test/fake_server/fake_server.h", 1034 "test/fake_server/fake_server.h",
1035 "test/fake_server/fake_server_entity.cc",
1036 "test/fake_server/fake_server_entity.h",
1033 "test/fake_server/fake_server_http_post_provider.cc", 1037 "test/fake_server/fake_server_http_post_provider.cc",
1034 "test/fake_server/fake_server_http_post_provider.h", 1038 "test/fake_server/fake_server_http_post_provider.h",
1035 "test/fake_server/fake_server_network_resources.cc", 1039 "test/fake_server/fake_server_network_resources.cc",
1036 "test/fake_server/fake_server_network_resources.h", 1040 "test/fake_server/fake_server_network_resources.h",
1037 "test/fake_server/fake_server_verifier.cc", 1041 "test/fake_server/fake_server_verifier.cc",
1038 "test/fake_server/fake_server_verifier.h", 1042 "test/fake_server/fake_server_verifier.h",
1043 "test/fake_server/permanent_entity.cc",
1044 "test/fake_server/permanent_entity.h",
1039 "test/fake_server/sessions_hierarchy.cc", 1045 "test/fake_server/sessions_hierarchy.cc",
1040 "test/fake_server/sessions_hierarchy.h", 1046 "test/fake_server/sessions_hierarchy.h",
1047 "test/fake_server/tombstone_entity.cc",
1048 "test/fake_server/tombstone_entity.h",
1049 "test/fake_server/unique_client_entity.cc",
1050 "test/fake_server/unique_client_entity.h",
1041 ] 1051 ]
1042 1052
1043 deps = [ 1053 deps = [
1044 ":sync", 1054 ":sync",
1045 "//base", 1055 "//base",
1046 "//net", 1056 "//net",
1047 "//testing/gtest", 1057 "//testing/gtest",
1048 "//url", 1058 "//url",
1049 ] 1059 ]
1050 1060
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 deps = [ 1157 deps = [
1148 ":fake_server_jni", 1158 ":fake_server_jni",
1149 ":sync", 1159 ":sync",
1150 ":test_support_fake_server", 1160 ":test_support_fake_server",
1151 "//base", 1161 "//base",
1152 "//testing/gtest", 1162 "//testing/gtest",
1153 "//url:url", 1163 "//url:url",
1154 ] 1164 ]
1155 } 1165 }
1156 } 1166 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698