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
3 # found in the LICENSE file.
7 # Test support files for the 'sync_core' target.
9 'target_name': 'test_support_sync_core',
10 'type': 'static_library',
11 'variables': { 'enable_wexit_time_destructors': 1, },
19 '../base/base.gyp:base',
20 '../testing/gmock.gyp:gmock',
21 '../testing/gtest.gyp:gtest',
24 'export_dependent_settings': [
25 '../testing/gmock.gyp:gmock',
26 '../testing/gtest.gyp:gtest',
32 'sessions/test_util.cc',
33 'sessions/test_util.h',
34 'syncable/syncable_mock.cc',
35 'syncable/syncable_mock.h',
36 'test/callback_counter.h',
37 'test/engine/fake_model_worker.cc',
38 'test/engine/fake_model_worker.h',
39 'test/engine/fake_sync_scheduler.cc',
40 'test/engine/fake_sync_scheduler.h',
41 'test/engine/mock_connection_manager.cc',
42 'test/engine/mock_connection_manager.h',
43 'test/engine/syncer_command_test.cc',
44 'test/engine/syncer_command_test.h',
45 'test/engine/test_directory_setter_upper.cc',
46 'test/engine/test_directory_setter_upper.h',
47 'test/engine/test_id_factory.h',
48 'test/engine/test_syncable_utils.cc',
49 'test/engine/test_syncable_utils.h',
50 'test/fake_encryptor.cc',
51 'test/fake_encryptor.h',
52 'test/fake_sync_encryption_handler.h',
53 'test/fake_sync_encryption_handler.cc',
54 'test/fake_extensions_activity_monitor.cc',
55 'test/fake_extensions_activity_monitor.h',
56 'test/test_transaction_observer.cc',
57 'test/test_transaction_observer.h',
58 'test/null_directory_change_delegate.cc',
59 'test/null_directory_change_delegate.h',
60 'test/null_transaction_observer.cc',
61 'test/null_transaction_observer.h',
62 'test/sessions/test_scoped_session_event_listener.h',
63 'test/test_directory_backing_store.cc',
64 'test/test_directory_backing_store.h',
65 'util/test_unrecoverable_error_handler.cc',
66 'util/test_unrecoverable_error_handler.h',
70 # Test support files for the python sync test server.
72 'target_name': 'test_support_sync_testserver',
73 'type': 'static_library',
74 'variables': { 'enable_wexit_time_destructors': 1, },
79 '../base/base.gyp:base',
80 '../net/net.gyp:net_test_support',
81 # The sync test server uses Python modules generated by the sync protos.
82 '../third_party/protobuf/protobuf.gyp:py_proto',
85 'export_dependent_settings': [
86 '../base/base.gyp:base',
87 '../net/net.gyp:net_test_support',
90 'test/local_sync_test_server.cc',
91 'test/local_sync_test_server.h',
95 # Test support files for the 'sync_notifier' target.
97 'target_name': 'test_support_sync_notifier',
98 'type': 'static_library',
106 '../testing/gmock.gyp:gmock',
107 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_proto_cpp',
110 'export_dependent_settings': [
111 '../testing/gmock.gyp:gmock',
112 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_proto_cpp',
116 'notifier/fake_invalidation_state_tracker.cc',
117 'notifier/fake_invalidation_state_tracker.h',
118 'notifier/fake_invalidator.cc',
119 'notifier/fake_invalidator.h',
120 'notifier/fake_invalidation_handler.cc',
121 'notifier/fake_invalidation_handler.h',
122 'notifier/invalidator_test_template.cc',
123 'notifier/invalidator_test_template.h',
124 'notifier/object_id_invalidation_map_test_util.cc',
125 'notifier/object_id_invalidation_map_test_util.h',
129 # Test support files for the 'sync_internal_api' target.
131 'target_name': 'test_support_sync_internal_api',
132 'type': 'static_library',
133 'variables': { 'enable_wexit_time_destructors': 1, },
141 '../base/base.gyp:base',
142 '../testing/gtest.gyp:gtest',
144 'test_support_sync_core',
146 'export_dependent_settings': [
147 '../testing/gtest.gyp:gtest',
149 'test_support_sync_core',
152 'internal_api/public/base/invalidation_test_util.cc',
153 'internal_api/public/base/invalidation_test_util.h',
154 'internal_api/public/base/model_type_invalidation_map_test_util.cc',
155 'internal_api/public/base/model_type_invalidation_map_test_util.h',
156 'internal_api/public/base/model_type_test_util.cc',
157 'internal_api/public/base/model_type_test_util.h',
158 'internal_api/public/test/fake_sync_manager.h',
159 'internal_api/public/test/test_entry_factory.h',
160 'internal_api/public/test/test_internal_components_factory.h',
161 'internal_api/public/test/test_user_share.h',
162 'internal_api/test/fake_sync_manager.cc',
163 'internal_api/test/test_entry_factory.cc',
164 'internal_api/test/test_internal_components_factory.cc',
165 'internal_api/test/test_user_share.cc',
169 # Test support files for the 'sync_api' target.
171 'target_name': 'test_support_sync_api',
172 'type': 'static_library',
180 '../testing/gmock.gyp:gmock',
183 'export_dependent_settings': [
184 '../testing/gmock.gyp:gmock',
188 'api/fake_syncable_service.cc',
189 'api/fake_syncable_service.h',
190 'api/sync_error_factory_mock.cc',
191 'api/sync_error_factory_mock.h',
195 # Unit tests for the 'sync_core' target. This cannot be a static
196 # library because the unit test files have to be compiled directly
197 # into the executable, so we push the target files to the
198 # depending executable target via direct_dependent_settings.
200 'target_name': 'sync_core_tests',
202 # We only want unit test executables to include this target.
203 'suppress_wildcard': 1,
205 '../base/base.gyp:base',
206 '../sql/sql.gyp:sql',
207 '../testing/gmock.gyp:gmock',
208 '../testing/gtest.gyp:gtest',
210 'test_support_sync_core',
213 ['OS=="linux" and chromeos==1', {
214 # Required by get_session_name_unittest.cc on Chrome OS.
216 '../chromeos/chromeos.gyp:chromeos',
220 # Propagate all dependencies since the actual compilation
221 # happens in the dependents.
222 'export_dependent_settings': [
223 '../base/base.gyp:base',
224 '../sql/sql.gyp:sql',
225 '../testing/gmock.gyp:gmock',
226 '../testing/gtest.gyp:gtest',
228 'test_support_sync_core',
230 'direct_dependent_settings': {
235 'internal_api/public/base/enum_set_unittest.cc',
236 'internal_api/public/base/model_type_invalidation_map_unittest.cc',
237 'internal_api/public/base/node_ordinal_unittest.cc',
238 'internal_api/public/base/ordinal_unittest.cc',
239 'internal_api/public/base/unique_position_unittest.cc',
240 'internal_api/public/engine/model_safe_worker_unittest.cc',
241 'internal_api/public/util/immutable_unittest.cc',
242 'internal_api/public/util/weak_handle_unittest.cc',
243 'engine/apply_control_data_updates_unittest.cc',
244 'engine/apply_updates_and_resolve_conflicts_command_unittest.cc',
245 'engine/backoff_delay_provider_unittest.cc',
246 'engine/build_commit_command_unittest.cc',
247 'engine/download_updates_command_unittest.cc',
248 'engine/model_changing_syncer_command_unittest.cc',
249 'engine/process_commit_response_command_unittest.cc',
250 'engine/process_updates_command_unittest.cc',
251 'engine/store_timestamps_command_unittest.cc',
252 'engine/sync_session_job_unittest.cc',
253 'engine/sync_scheduler_unittest.cc',
254 'engine/sync_scheduler_whitebox_unittest.cc',
255 'engine/syncer_proto_util_unittest.cc',
256 'engine/syncer_unittest.cc',
257 'engine/throttled_data_type_tracker_unittest.cc',
258 'engine/traffic_recorder_unittest.cc',
259 'js/js_arg_list_unittest.cc',
260 'js/js_event_details_unittest.cc',
261 'js/sync_js_controller_unittest.cc',
262 'protocol/proto_enum_conversions_unittest.cc',
263 'protocol/proto_value_conversions_unittest.cc',
264 'sessions/ordered_commit_set_unittest.cc',
265 'sessions/status_controller_unittest.cc',
266 'sessions/sync_session_unittest.cc',
267 'syncable/directory_backing_store_unittest.cc',
268 'syncable/model_type_unittest.cc',
269 'syncable/nigori_util_unittest.cc',
270 'syncable/syncable_enum_conversions_unittest.cc',
271 'syncable/syncable_id_unittest.cc',
272 'syncable/syncable_unittest.cc',
273 'syncable/syncable_util_unittest.cc',
274 'util/cryptographer_unittest.cc',
275 'util/data_encryption_win_unittest.cc',
276 'util/data_type_histogram_unittest.cc',
277 'util/get_session_name_unittest.cc',
278 'util/nigori_unittest.cc',
279 'util/protobuf_unittest.cc',
282 ['OS == "ios" and coverage != 0', {
284 # These sources can't be built with coverage due to a toolchain
285 # bug: http://openradar.appspot.com/radar?id=1499403
286 'engine/syncer_unittest.cc',
288 # These tests crash when run with coverage turned on due to an
289 # issue with llvm_gcda_increment_indirect_counter:
290 # http://crbug.com/156058
291 'syncable/directory_backing_store_unittest.cc',
298 # Unit tests for the 'sync_notifier' target. This cannot be a static
299 # library because the unit test files have to be compiled directly
300 # into the executable, so we push the target files to the
301 # depending executable target via direct_dependent_settings.
303 'target_name': 'sync_notifier_tests',
305 # We only want unit test executables to include this target.
306 'suppress_wildcard': 1,
308 '../base/base.gyp:base',
309 '../jingle/jingle.gyp:notifier_test_util',
310 '../net/net.gyp:net_test_support',
311 '../testing/gmock.gyp:gmock',
312 '../testing/gtest.gyp:gtest',
313 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
314 '../third_party/libjingle/libjingle.gyp:libjingle',
316 'test_support_sync_notifier',
318 # Propagate all dependencies since the actual compilation
319 # happens in the dependents.
320 'export_dependent_settings': [
321 '../base/base.gyp:base',
322 '../jingle/jingle.gyp:notifier_test_util',
323 '../net/net.gyp:net_test_support',
324 '../testing/gmock.gyp:gmock',
325 '../testing/gtest.gyp:gtest',
326 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
327 '../third_party/libjingle/libjingle.gyp:libjingle',
329 'test_support_sync_notifier',
331 'direct_dependent_settings': {
336 'notifier/invalidator_factory_unittest.cc',
339 ['OS != "android"', {
341 'notifier/ack_tracker_unittest.cc',
342 'notifier/fake_invalidator_unittest.cc',
343 'notifier/invalidation_notifier_unittest.cc',
344 'notifier/invalidator_registrar_unittest.cc',
345 'notifier/non_blocking_invalidator_unittest.cc',
346 'notifier/p2p_invalidator_unittest.cc',
347 'notifier/push_client_channel_unittest.cc',
348 'notifier/registration_manager_unittest.cc',
349 'notifier/sync_invalidation_listener_unittest.cc',
350 'notifier/sync_system_resources_unittest.cc',
357 # Unit tests for the 'sync_internal_api' target. This cannot be a static
358 # library because the unit test files have to be compiled directly
359 # into the executable, so we push the target files to the
360 # depending executable target via direct_dependent_settings.
362 'target_name': 'sync_internal_api_tests',
364 # We only want unit test executables to include this target.
365 'suppress_wildcard': 1,
367 '../base/base.gyp:base',
368 '../net/net.gyp:net',
369 '../net/net.gyp:net_test_support',
370 '../testing/gmock.gyp:gmock',
371 '../testing/gtest.gyp:gtest',
373 'test_support_sync_internal_api',
375 # Propagate all dependencies since the actual compilation
376 # happens in the dependents.
377 'export_dependent_settings': [
378 '../base/base.gyp:base',
379 '../net/net.gyp:net',
380 '../net/net.gyp:net_test_support',
381 '../testing/gmock.gyp:gmock',
382 '../testing/gtest.gyp:gtest',
384 'test_support_sync_internal_api',
386 'direct_dependent_settings': {
391 'internal_api/debug_info_event_listener_unittest.cc',
392 'internal_api/http_bridge_unittest.cc',
393 'internal_api/js_mutation_event_observer_unittest.cc',
394 'internal_api/js_sync_encryption_handler_observer_unittest.cc',
395 'internal_api/js_sync_manager_observer_unittest.cc',
396 'internal_api/public/change_record_unittest.cc',
397 'internal_api/public/sessions/sync_session_snapshot_unittest.cc',
398 'internal_api/public/sessions/sync_source_info_unittest.cc',
399 'internal_api/syncapi_server_connection_manager_unittest.cc',
400 'internal_api/sync_encryption_handler_impl_unittest.cc',
401 'internal_api/sync_manager_impl_unittest.cc',
406 'internal_api/http_bridge_unittest.cc',
413 # Unit tests for the 'sync_api' target. This cannot be a static
414 # library because the unit test files have to be compiled directly
415 # into the executable, so we push the target files to the
416 # depending executable target via direct_dependent_settings.
418 'target_name': 'sync_api_tests',
420 # We only want unit test executables to include this target.
421 'suppress_wildcard': 1,
423 '../base/base.gyp:base',
424 '../testing/gtest.gyp:gtest',
426 'test_support_sync_internal_api',
428 # Propagate all dependencies since the actual compilation
429 # happens in the dependents.
430 'export_dependent_settings': [
431 '../base/base.gyp:base',
432 '../testing/gtest.gyp:gtest',
434 'test_support_sync_internal_api',
436 'direct_dependent_settings': {
441 'api/sync_change_unittest.cc',
442 'api/sync_error_unittest.cc',
443 'api/sync_merge_result_unittest.cc',
448 # The unit test executable for sync tests.
450 'target_name': 'sync_unit_tests',
451 'type': '<(gtest_target_type)',
452 # Typed-parametrized tests generate exit-time destructors.
453 'variables': { 'enable_wexit_time_destructors': 0, },
458 '../base/base.gyp:run_all_unittests',
461 'sync_internal_api_tests',
462 'sync_notifier_tests',
465 # TODO(akalin): This is needed because histogram.cc uses
466 # leak_annotations.h, which pulls this in. Make 'base'
467 # propagate this dependency.
468 ['OS=="linux" and linux_use_tcmalloc==1', {
470 '../base/allocator/allocator.gyp:allocator',
473 ['OS == "android" and gtest_target_type == "shared_library"', {
475 '../testing/android/native_test.gyp:native_test_native_code',
485 'target_name': 'sync_tools_helper',
486 'type': 'static_library',
488 'SYNC_IMPLEMENTATION',
494 '../base/base.gyp:base',
497 'export_dependent_settings': [
498 '../base/base.gyp:base',
502 'tools/null_invalidation_state_tracker.cc',
503 'tools/null_invalidation_state_tracker.h',
507 # A tool that can be used to launch a python sync server instance.
509 'target_name': 'run_sync_testserver',
510 'type': 'executable',
512 '../base/base.gyp:base',
513 '../base/base.gyp:test_support_base',
514 '../net/net.gyp:net_test_support',
515 '../testing/gtest.gyp:gtest',
516 'test_support_sync_testserver',
519 'tools/testserver/run_sync_testserver.cc',
523 # A tool to listen to sync notifications and print them out.
525 'target_name': 'sync_listen_notifications',
526 'type': 'executable',
531 '../base/base.gyp:base',
532 '../jingle/jingle.gyp:notifier',
533 '../net/net.gyp:net',
534 '../net/net.gyp:net_test_support',
539 'tools/sync_listen_notifications.cc',
543 # A standalone command-line sync client.
545 'target_name': 'sync_client',
546 'type': 'executable',
551 '../base/base.gyp:base',
552 '../jingle/jingle.gyp:notifier',
553 '../net/net.gyp:net',
554 '../net/net.gyp:net_test_support',
557 'test_support_sync_core'
560 'tools/sync_client.cc',
565 ['OS == "android"', {
568 'target_name': 'sync_javatests',
571 'java_in_dir': '../sync/android/javatests',
575 'sync_java_test_support',
576 '../base/base.gyp:base_java_test_support',
578 'includes': [ '../build/java.gypi' ],
581 'target_name': 'sync_java_test_support',
584 'package_name': 'sync_java_test_support',
585 'java_in_dir': '../sync/test/android/javatests',
590 'includes': [ '../build/java.gypi' ],
594 # Special target to wrap a gtest_target_type==shared_library
595 # sync_unit_tests into an android apk for execution.
596 ['OS == "android" and gtest_target_type == "shared_library"', {
599 'target_name': 'sync_unit_tests_apk',
605 'test_suite_name': 'sync_unit_tests',
606 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit_tests<(SHARED_LIB_SUFFIX)',
608 'includes': [ '../build/apk_test.gypi' ],