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

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: 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
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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 'test_support_sync_core', 144 'test_support_sync_core',
145 ], 145 ],
146 'export_dependent_settings': [ 146 'export_dependent_settings': [
147 '../testing/gtest.gyp:gtest', 147 '../testing/gtest.gyp:gtest',
148 'sync', 148 'sync',
149 'test_support_sync_core', 149 'test_support_sync_core',
150 ], 150 ],
151 'sources': [ 151 'sources': [
152 'internal_api/public/base/invalidation_test_util.cc', 152 'internal_api/public/base/invalidation_test_util.cc',
153 'internal_api/public/base/invalidation_test_util.h', 153 'internal_api/public/base/invalidation_test_util.h',
154 'internal_api/public/test/fake_server.h',
155 'internal_api/public/test/fake_server_http_post_provider.h',
156 'internal_api/public/test/fake_server_network_resources.h',
154 'internal_api/public/test/fake_sync_manager.h', 157 'internal_api/public/test/fake_sync_manager.h',
155 'internal_api/public/test/sync_manager_factory_for_profile_sync_test.h', 158 'internal_api/public/test/sync_manager_factory_for_profile_sync_test.h',
156 'internal_api/public/test/test_entry_factory.h', 159 'internal_api/public/test/test_entry_factory.h',
157 'internal_api/public/test/test_internal_components_factory.h', 160 'internal_api/public/test/test_internal_components_factory.h',
158 'internal_api/public/test/test_user_share.h', 161 'internal_api/public/test/test_user_share.h',
162 'internal_api/test/fake_server.cc',
163 'internal_api/test/fake_server_http_post_provider.cc',
164 'internal_api/test/fake_server_network_resources.cc',
159 'internal_api/test/fake_sync_manager.cc', 165 'internal_api/test/fake_sync_manager.cc',
160 'internal_api/test/sync_manager_factory_for_profile_sync_test.cc', 166 'internal_api/test/sync_manager_factory_for_profile_sync_test.cc',
161 'internal_api/test/sync_manager_for_profile_sync_test.cc', 167 'internal_api/test/sync_manager_for_profile_sync_test.cc',
162 'internal_api/test/sync_manager_for_profile_sync_test.h', 168 'internal_api/test/sync_manager_for_profile_sync_test.h',
163 'internal_api/test/test_entry_factory.cc', 169 'internal_api/test/test_entry_factory.cc',
164 'internal_api/test/test_internal_components_factory.cc', 170 'internal_api/test/test_internal_components_factory.cc',
165 'internal_api/test/test_user_share.cc', 171 'internal_api/test/test_user_share.cc',
166 ], 172 ],
167 }, 173 },
168 174
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 'variables': { 625 'variables': {
620 'test_suite_name': 'sync_unit_tests', 626 'test_suite_name': 'sync_unit_tests',
621 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)', 627 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit _tests<(SHARED_LIB_SUFFIX)',
622 }, 628 },
623 'includes': [ '../build/apk_test.gypi' ], 629 'includes': [ '../build/apk_test.gypi' ],
624 }, 630 },
625 ], 631 ],
626 }], 632 }],
627 ], 633 ],
628 } 634 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698