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

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

Issue 2887343002: wip 3 (Closed)
Patch Set: cleanup 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 992 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 "//components/policy/core/browser", 1003 "//components/policy/core/browser",
1004 ] 1004 ]
1005 } 1005 }
1006 1006
1007 defines = [ "SYNC_TEST" ] 1007 defines = [ "SYNC_TEST" ]
1008 } 1008 }
1009 1009
1010 static_library("test_support_fake_server") { 1010 static_library("test_support_fake_server") {
1011 testonly = true 1011 testonly = true
1012 sources = [ 1012 sources = [
1013 "test/fake_server/bookmark_entity.cc",
1014 "test/fake_server/bookmark_entity.h",
1015 "test/fake_server/bookmark_entity_builder.cc", 1013 "test/fake_server/bookmark_entity_builder.cc",
1016 "test/fake_server/bookmark_entity_builder.h", 1014 "test/fake_server/bookmark_entity_builder.h",
1017 "test/fake_server/entity_builder_factory.cc", 1015 "test/fake_server/entity_builder_factory.cc",
1018 "test/fake_server/entity_builder_factory.h", 1016 "test/fake_server/entity_builder_factory.h",
1019 "test/fake_server/fake_server.cc", 1017 "test/fake_server/fake_server.cc",
1020 "test/fake_server/fake_server.h", 1018 "test/fake_server/fake_server.h",
1021 "test/fake_server/fake_server_entity.cc",
1022 "test/fake_server/fake_server_entity.h",
1023 "test/fake_server/fake_server_http_post_provider.cc", 1019 "test/fake_server/fake_server_http_post_provider.cc",
1024 "test/fake_server/fake_server_http_post_provider.h", 1020 "test/fake_server/fake_server_http_post_provider.h",
1025 "test/fake_server/fake_server_network_resources.cc", 1021 "test/fake_server/fake_server_network_resources.cc",
1026 "test/fake_server/fake_server_network_resources.h", 1022 "test/fake_server/fake_server_network_resources.h",
1027 "test/fake_server/fake_server_verifier.cc", 1023 "test/fake_server/fake_server_verifier.cc",
1028 "test/fake_server/fake_server_verifier.h", 1024 "test/fake_server/fake_server_verifier.h",
1029 "test/fake_server/permanent_entity.cc",
1030 "test/fake_server/permanent_entity.h",
1031 "test/fake_server/sessions_hierarchy.cc", 1025 "test/fake_server/sessions_hierarchy.cc",
1032 "test/fake_server/sessions_hierarchy.h", 1026 "test/fake_server/sessions_hierarchy.h",
1033 "test/fake_server/tombstone_entity.cc",
1034 "test/fake_server/tombstone_entity.h",
1035 "test/fake_server/unique_client_entity.cc",
1036 "test/fake_server/unique_client_entity.h",
1037 ] 1027 ]
1038 1028
1039 deps = [ 1029 deps = [
1040 ":sync", 1030 ":sync",
1041 "//base", 1031 "//base",
1042 "//net", 1032 "//net",
1043 "//testing/gtest", 1033 "//testing/gtest",
1044 "//url", 1034 "//url",
1045 ] 1035 ]
1046 1036
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
1143 deps = [ 1133 deps = [
1144 ":fake_server_jni", 1134 ":fake_server_jni",
1145 ":sync", 1135 ":sync",
1146 ":test_support_fake_server", 1136 ":test_support_fake_server",
1147 "//base", 1137 "//base",
1148 "//testing/gtest", 1138 "//testing/gtest",
1149 "//url:url", 1139 "//url:url",
1150 ] 1140 ]
1151 } 1141 }
1152 } 1142 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698