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

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

Issue 2969643002: Reland - Replace FakeServer's implementation with LoopbackServer invocations. (Closed)
Patch Set: Rebased on master. Created 3 years, 5 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",
1029 "test/fake_server/bookmark_entity_builder.cc", 1027 "test/fake_server/bookmark_entity_builder.cc",
1030 "test/fake_server/bookmark_entity_builder.h", 1028 "test/fake_server/bookmark_entity_builder.h",
1031 "test/fake_server/entity_builder_factory.cc", 1029 "test/fake_server/entity_builder_factory.cc",
1032 "test/fake_server/entity_builder_factory.h", 1030 "test/fake_server/entity_builder_factory.h",
1033 "test/fake_server/fake_server.cc", 1031 "test/fake_server/fake_server.cc",
1034 "test/fake_server/fake_server.h", 1032 "test/fake_server/fake_server.h",
1035 "test/fake_server/fake_server_entity.cc",
1036 "test/fake_server/fake_server_entity.h",
1037 "test/fake_server/fake_server_http_post_provider.cc", 1033 "test/fake_server/fake_server_http_post_provider.cc",
1038 "test/fake_server/fake_server_http_post_provider.h", 1034 "test/fake_server/fake_server_http_post_provider.h",
1039 "test/fake_server/fake_server_network_resources.cc", 1035 "test/fake_server/fake_server_network_resources.cc",
1040 "test/fake_server/fake_server_network_resources.h", 1036 "test/fake_server/fake_server_network_resources.h",
1041 "test/fake_server/fake_server_verifier.cc", 1037 "test/fake_server/fake_server_verifier.cc",
1042 "test/fake_server/fake_server_verifier.h", 1038 "test/fake_server/fake_server_verifier.h",
1043 "test/fake_server/permanent_entity.cc",
1044 "test/fake_server/permanent_entity.h",
1045 "test/fake_server/sessions_hierarchy.cc", 1039 "test/fake_server/sessions_hierarchy.cc",
1046 "test/fake_server/sessions_hierarchy.h", 1040 "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",
1051 ] 1041 ]
1052 1042
1053 deps = [ 1043 deps = [
1054 ":sync", 1044 ":sync",
1055 "//base", 1045 "//base",
1056 "//net", 1046 "//net",
1057 "//testing/gtest", 1047 "//testing/gtest",
1058 "//url", 1048 "//url",
1059 ] 1049 ]
1060 1050
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1157 deps = [ 1147 deps = [
1158 ":fake_server_jni", 1148 ":fake_server_jni",
1159 ":sync", 1149 ":sync",
1160 ":test_support_fake_server", 1150 ":test_support_fake_server",
1161 "//base", 1151 "//base",
1162 "//testing/gtest", 1152 "//testing/gtest",
1163 "//url:url", 1153 "//url:url",
1164 ] 1154 ]
1165 } 1155 }
1166 } 1156 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698