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

Unified Diff: sync/sync_tests.gypi

Issue 115243007: Basic implementation of the Sync C++ fake server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move files Created 6 years, 11 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
Index: sync/sync_tests.gypi
diff --git a/sync/sync_tests.gypi b/sync/sync_tests.gypi
index 683ca52204b353154b4617fa0b1af55e2ec5c95a..adf889f00b0d39f54b96607e3fb95ec827538ab2 100644
--- a/sync/sync_tests.gypi
+++ b/sync/sync_tests.gypi
@@ -90,6 +90,33 @@
],
},
+ # Test support files for the fake sync server.
+ {
+ 'target_name': 'test_support_sync_fake_server',
+ 'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'include_dirs': [
+ '..',
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'sync_internal_api',
+ 'sync_proto',
+ ],
+ 'export_dependent_settings': [
+ 'sync_internal_api',
+ 'sync_proto',
+ ],
+ 'sources': [
+ 'test/fake_server/fake_server.h',
+ 'test/fake_server/fake_server.cc',
+ 'test/fake_server/fake_server_http_post_provider.h',
+ 'test/fake_server/fake_server_http_post_provider.cc',
+ 'test/fake_server/fake_server_network_resources.h',
+ 'test/fake_server/fake_server_network_resources.cc',
+ ],
+ },
+
# Test support files for the 'sync_notifier' target.
{
'target_name': 'test_support_sync_notifier',

Powered by Google App Engine
This is Rietveld 408576698