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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 # Test support files for the 'sync_core' target. 7 # Test support files for the 'sync_core' target.
8 { 8 {
9 'target_name': 'test_support_sync_core', 9 'target_name': 'test_support_sync_core',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 'export_dependent_settings': [ 83 'export_dependent_settings': [
84 '../base/base.gyp:base', 84 '../base/base.gyp:base',
85 '../net/net.gyp:net_test_support', 85 '../net/net.gyp:net_test_support',
86 ], 86 ],
87 'sources': [ 87 'sources': [
88 'test/local_sync_test_server.cc', 88 'test/local_sync_test_server.cc',
89 'test/local_sync_test_server.h', 89 'test/local_sync_test_server.h',
90 ], 90 ],
91 }, 91 },
92 92
93 # Test support files for the fake sync server.
94 {
95 'target_name': 'test_support_sync_fake_server',
96 'type': 'static_library',
97 'variables': { 'enable_wexit_time_destructors': 1, },
98 'include_dirs': [
99 '..',
100 ],
101 'dependencies': [
102 '../base/base.gyp:base',
103 'sync',
104 ],
105 'export_dependent_settings': [
106 'sync',
107 ],
108 'sources': [
109 'test/fake_server/fake_server.h',
110 'test/fake_server/fake_server.cc',
111 'test/fake_server/fake_server_http_post_provider.h',
112 'test/fake_server/fake_server_http_post_provider.cc',
113 'test/fake_server/fake_server_network_resources.h',
114 'test/fake_server/fake_server_network_resources.cc',
115 ],
116 },
117
93 # Test support files for the 'sync_notifier' target. 118 # Test support files for the 'sync_notifier' target.
94 { 119 {
95 'target_name': 'test_support_sync_notifier', 120 'target_name': 'test_support_sync_notifier',
96 'type': 'static_library', 121 'type': 'static_library',
97 'include_dirs': [ 122 'include_dirs': [
98 '..', 123 '..',
99 ], 124 ],
100 'defines': [ 125 'defines': [
101 'SYNC_TEST' 126 'SYNC_TEST'
102 ], 127 ],
(...skipping 520 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 'variables': { 648 'variables': {
624 'test_suite_name': 'sync_unit_tests', 649 'test_suite_name': 'sync_unit_tests',
625 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 650 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
626 }, 651 },
627 'includes': [ '../build/apk_test.gypi' ], 652 'includes': [ '../build/apk_test.gypi' ],
628 }, 653 },
629 ], 654 ],
630 }], 655 }],
631 ], 656 ],
632 } 657 }
OLDNEW
« 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