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

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: fix constant for clang 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
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | sync/test/fake_server/fake_server.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/sync_tests.gypi
diff --git a/sync/sync_tests.gypi b/sync/sync_tests.gypi
index 57e2b478b335d75e55fb1d58ca4813badb1d414c..bfe7e7b4843cf106b7d70cfed4ed08f1961560d6 100644
--- a/sync/sync_tests.gypi
+++ b/sync/sync_tests.gypi
@@ -90,6 +90,31 @@
],
},
+ # 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',
+ ],
+ 'export_dependent_settings': [
+ 'sync',
+ ],
+ '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',
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | sync/test/fake_server/fake_server.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698