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

Unified Diff: components/sync/BUILD.gn

Issue 2360703002: [Sync] Implements the loopback sync server. (Closed)
Patch Set: Address comment. Created 4 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | components/sync/engine_impl/loopback_server/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/BUILD.gn
diff --git a/components/sync/BUILD.gn b/components/sync/BUILD.gn
index 0535e22b5011f6897ccf82f53602f3d714a63696..e43b526496f7b4162c05ae147f592facde905d98 100644
--- a/components/sync/BUILD.gn
+++ b/components/sync/BUILD.gn
@@ -586,6 +586,25 @@ static_library("sync") {
]
}
+ if (is_win) {
+ sources += [
+ "engine_impl/loopback_server/loopback_connection_manager.cc",
+ "engine_impl/loopback_server/loopback_connection_manager.h",
+ "engine_impl/loopback_server/loopback_server.cc",
+ "engine_impl/loopback_server/loopback_server.h",
+ "engine_impl/loopback_server/loopback_server_entity.cc",
+ "engine_impl/loopback_server/loopback_server_entity.h",
+ "engine_impl/loopback_server/persistent_bookmark_entity.cc",
+ "engine_impl/loopback_server/persistent_bookmark_entity.h",
+ "engine_impl/loopback_server/persistent_permanent_entity.cc",
+ "engine_impl/loopback_server/persistent_permanent_entity.h",
+ "engine_impl/loopback_server/persistent_tombstone_entity.cc",
+ "engine_impl/loopback_server/persistent_tombstone_entity.h",
+ "engine_impl/loopback_server/persistent_unique_client_entity.cc",
+ "engine_impl/loopback_server/persistent_unique_client_entity.h",
+ ]
+ }
+
if (enable_configuration_policy) {
sources += [
"driver/sync_policy_handler.cc",
@@ -948,6 +967,10 @@ source_set("unit_tests") {
sources -= [ "engine/net/http_bridge_unittest.cc" ]
}
+ if (is_win) {
+ sources += [ "engine_impl/loopback_server/loopback_server_unittest.cc" ]
+ }
+
if (enable_configuration_policy) {
sources += [ "driver/sync_policy_handler_unittest.cc" ]
deps += [
« no previous file with comments | « no previous file | components/sync/engine_impl/loopback_server/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698