Don't switch browser locale on secondary user login
[chromium-blink-merge.git] / sync / sync_tests.gypi
blob07165af76cd4dad9609c48a7ab739a26f727617b
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.
6   'targets': [
7     # Test support files for the 'sync_core' target.
8     {
9       'target_name': 'test_support_sync_core',
10       'type': 'static_library',
11       'variables': { 'enable_wexit_time_destructors': 1, },
12       'include_dirs': [
13         '..',
14       ],
15       'defines': [
16         'SYNC_TEST'
17       ],
18       'dependencies': [
19         '../base/base.gyp:base',
20         '../testing/gmock.gyp:gmock',
21         '../testing/gtest.gyp:gtest',
22         'sync',
23       ],
24       'export_dependent_settings': [
25         '../testing/gmock.gyp:gmock',
26         '../testing/gtest.gyp:gtest',
27         'sync',
28       ],
29       'sources': [
30         'internal_api/public/base/model_type_test_util.cc',
31         'internal_api/public/base/model_type_test_util.h',
32         'js/js_test_util.cc',
33         'js/js_test_util.h',
34         'sessions/test_util.cc',
35         'sessions/test_util.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.cc',
53         'test/fake_sync_encryption_handler.h',
54         'test/null_directory_change_delegate.cc',
55         'test/null_directory_change_delegate.h',
56         'test/null_transaction_observer.cc',
57         'test/null_transaction_observer.h',
58         'test/sessions/test_scoped_session_event_listener.h',
59         'test/test_directory_backing_store.cc',
60         'test/test_directory_backing_store.h',
61         'test/test_transaction_observer.cc',
62         'test/test_transaction_observer.h',
63         'util/test_unrecoverable_error_handler.cc',
64         'util/test_unrecoverable_error_handler.h',
65       ],
66     },
68     # Test support files for the python sync test server.
69     {
70       'target_name': 'test_support_sync_testserver',
71       'type': 'static_library',
72       'variables': { 'enable_wexit_time_destructors': 1, },
73       'include_dirs': [
74         '..',
75       ],
76       'dependencies': [
77         '../base/base.gyp:base',
78         '../net/net.gyp:net_test_support',
79         # The sync test server uses Python modules generated by the sync protos.
80         '../third_party/protobuf/protobuf.gyp:py_proto',
81         'sync',
82       ],
83       'export_dependent_settings': [
84         '../base/base.gyp:base',
85         '../net/net.gyp:net_test_support',
86       ],
87       'sources': [
88         'test/local_sync_test_server.cc',
89         'test/local_sync_test_server.h',
90       ],
91     },
93     # Test support files for the 'sync_notifier' target.
94     {
95       'target_name': 'test_support_sync_notifier',
96       'type': 'static_library',
97       'include_dirs': [
98         '..',
99       ],
100       'defines': [
101         'SYNC_TEST'
102       ],
103       'dependencies': [
104         '../testing/gmock.gyp:gmock',
105         '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_proto_cpp',
106         'sync',
107       ],
108       'export_dependent_settings': [
109         '../testing/gmock.gyp:gmock',
110         '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation_proto_cpp',
111         'sync',
112       ],
113       'sources': [
114         'notifier/fake_invalidation_state_tracker.cc',
115         'notifier/fake_invalidation_state_tracker.h',
116         'notifier/fake_invalidator.cc',
117         'notifier/fake_invalidator.h',
118         'notifier/fake_invalidation_handler.cc',
119         'notifier/fake_invalidation_handler.h',
120         'notifier/invalidator_test_template.cc',
121         'notifier/invalidator_test_template.h',
122         'notifier/object_id_invalidation_map_test_util.cc',
123         'notifier/object_id_invalidation_map_test_util.h',
124       ],
125     },
127     # Test support files for the 'sync_internal_api' target.
128     {
129       'target_name': 'test_support_sync_internal_api',
130       'type': 'static_library',
131       'variables': { 'enable_wexit_time_destructors': 1, },
132       'include_dirs': [
133         '..',
134       ],
135       'defines': [
136         'SYNC_TEST'
137       ],
138       'dependencies': [
139         '../base/base.gyp:base',
140         '../testing/gtest.gyp:gtest',
141         'sync',
142         'test_support_sync_core',
143       ],
144       'export_dependent_settings': [
145         '../testing/gtest.gyp:gtest',
146         'sync',
147         'test_support_sync_core',
148       ],
149       'sources': [
150         'internal_api/public/base/invalidation_test_util.cc',
151         'internal_api/public/base/invalidation_test_util.h',
152         'internal_api/public/test/fake_sync_manager.h',
153         'internal_api/public/test/test_entry_factory.h',
154         'internal_api/public/test/test_internal_components_factory.h',
155         'internal_api/public/test/test_user_share.h',
156         'internal_api/test/fake_sync_manager.cc',
157         'internal_api/test/test_entry_factory.cc',
158         'internal_api/test/test_internal_components_factory.cc',
159         'internal_api/test/test_user_share.cc',
160       ],
161     },
163     # Test support files for the 'sync_api' target.
164     {
165       'target_name': 'test_support_sync_api',
166       'type': 'static_library',
167       'include_dirs': [
168         '..',
169       ],
170       'defines': [
171         'SYNC_TEST'
172       ],
173       'dependencies': [
174         '../testing/gmock.gyp:gmock',
175         'sync',
176       ],
177       'export_dependent_settings': [
178         '../testing/gmock.gyp:gmock',
179         'sync',
180       ],
181       'sources': [
182         'api/fake_syncable_service.cc',
183         'api/fake_syncable_service.h',
184         'api/sync_error_factory_mock.cc',
185         'api/sync_error_factory_mock.h',
186       ],
187     },
189     # Unit tests for the 'sync_core' target.  This cannot be a static
190     # library because the unit test files have to be compiled directly
191     # into the executable, so we push the target files to the
192     # depending executable target via direct_dependent_settings.
193     {
194       'target_name': 'sync_core_tests',
195       'type': 'none',
196       # We only want unit test executables to include this target.
197       'suppress_wildcard': 1,
198       'dependencies': [
199         '../base/base.gyp:base',
200         '../sql/sql.gyp:sql',
201         '../testing/gmock.gyp:gmock',
202         '../testing/gtest.gyp:gtest',
203         'sync',
204         'test_support_sync_core',
205       ],
206       'conditions': [
207         ['OS=="linux" and chromeos==1', {
208           # Required by get_session_name_unittest.cc on Chrome OS.
209           'dependencies': [
210             '../chromeos/chromeos.gyp:chromeos',
211           ],
212         }],
213       ],
214       # Propagate all dependencies since the actual compilation
215       # happens in the dependents.
216       'export_dependent_settings': [
217         '../base/base.gyp:base',
218         '../sql/sql.gyp:sql',
219         '../testing/gmock.gyp:gmock',
220         '../testing/gtest.gyp:gtest',
221         'sync',
222         'test_support_sync_core',
223       ],
224       'direct_dependent_settings': {
225         'include_dirs': [
226           '..',
227         ],
228         'sources': [
229           'internal_api/public/base/enum_set_unittest.cc',
230           'internal_api/public/base/node_ordinal_unittest.cc',
231           'internal_api/public/base/ordinal_unittest.cc',
232           'internal_api/public/base/unique_position_unittest.cc',
233           'internal_api/public/engine/model_safe_worker_unittest.cc',
234           'internal_api/public/util/immutable_unittest.cc',
235           'internal_api/public/util/weak_handle_unittest.cc',
236           'engine/apply_control_data_updates_unittest.cc',
237           'engine/apply_updates_and_resolve_conflicts_command_unittest.cc',
238           'engine/backoff_delay_provider_unittest.cc',
239           'engine/download_unittest.cc',
240           'engine/model_changing_syncer_command_unittest.cc',
241           'engine/process_commit_response_command_unittest.cc',
242           'engine/process_updates_command_unittest.cc',
243           'engine/store_timestamps_command_unittest.cc',
244           'engine/sync_scheduler_unittest.cc',
245           'engine/syncer_proto_util_unittest.cc',
246           'engine/syncer_unittest.cc',
247           'engine/traffic_recorder_unittest.cc',
248           'js/js_arg_list_unittest.cc',
249           'js/js_event_details_unittest.cc',
250           'js/sync_js_controller_unittest.cc',
251           'protocol/proto_enum_conversions_unittest.cc',
252           'protocol/proto_value_conversions_unittest.cc',
253           'sessions/nudge_tracker_unittest.cc',
254           'sessions/ordered_commit_set_unittest.cc',
255           'sessions/status_controller_unittest.cc',
256           'sessions/sync_session_unittest.cc',
257           'syncable/directory_backing_store_unittest.cc',
258           'syncable/model_type_unittest.cc',
259           'syncable/nigori_util_unittest.cc',
260           'syncable/parent_child_index_unittest.cc',
261           'syncable/syncable_enum_conversions_unittest.cc',
262           'syncable/syncable_id_unittest.cc',
263           'syncable/syncable_unittest.cc',
264           'syncable/syncable_util_unittest.cc',
265           'util/cryptographer_unittest.cc',
266           'util/data_type_histogram_unittest.cc',
267           'util/get_session_name_unittest.cc',
268           'util/nigori_unittest.cc',
269           'util/protobuf_unittest.cc',
270         ],
271         'conditions': [
272           ['OS == "ios" and coverage != 0', {
273             'sources!': [
274               # These sources can't be built with coverage due to a toolchain
275               # bug: http://openradar.appspot.com/radar?id=1499403
276               'engine/syncer_unittest.cc',
278               # These tests crash when run with coverage turned on due to an
279               # issue with llvm_gcda_increment_indirect_counter:
280               # http://crbug.com/156058
281               'syncable/directory_backing_store_unittest.cc',
282             ],
283           }],
284         ],
285       },
286     },
288     # Unit tests for the 'sync_notifier' target.  This cannot be a static
289     # library because the unit test files have to be compiled directly
290     # into the executable, so we push the target files to the
291     # depending executable target via direct_dependent_settings.
292     {
293       'target_name': 'sync_notifier_tests',
294       'type': 'none',
295       # We only want unit test executables to include this target.
296       'suppress_wildcard': 1,
297       'dependencies': [
298         '../base/base.gyp:base',
299         '../jingle/jingle.gyp:notifier_test_util',
300         '../net/net.gyp:net_test_support',
301         '../testing/gmock.gyp:gmock',
302         '../testing/gtest.gyp:gtest',
303         '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
304         '../third_party/libjingle/libjingle.gyp:libjingle',
305         'sync',
306         'test_support_sync_notifier',
307       ],
308       # Propagate all dependencies since the actual compilation
309       # happens in the dependents.
310       'export_dependent_settings': [
311         '../base/base.gyp:base',
312         '../jingle/jingle.gyp:notifier_test_util',
313         '../net/net.gyp:net_test_support',
314         '../testing/gmock.gyp:gmock',
315         '../testing/gtest.gyp:gtest',
316         '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidation',
317         '../third_party/libjingle/libjingle.gyp:libjingle',
318         'sync',
319         'test_support_sync_notifier',
320       ],
321       'direct_dependent_settings': {
322         'include_dirs': [
323           '..',
324         ],
325         'conditions': [
326           ['OS != "android"', {
327             'sources': [
328               'notifier/ack_tracker_unittest.cc',
329               'notifier/fake_invalidator_unittest.cc',
330               'notifier/invalidation_notifier_unittest.cc',
331               'notifier/invalidator_registrar_unittest.cc',
332               'notifier/non_blocking_invalidator_unittest.cc',
333               'notifier/p2p_invalidator_unittest.cc',
334               'notifier/push_client_channel_unittest.cc',
335               'notifier/registration_manager_unittest.cc',
336               'notifier/sync_invalidation_listener_unittest.cc',
337               'notifier/sync_system_resources_unittest.cc',
338             ],
339           }],
340         ],
341       },
342     },
344     # Unit tests for the 'sync_internal_api' target.  This cannot be a static
345     # library because the unit test files have to be compiled directly
346     # into the executable, so we push the target files to the
347     # depending executable target via direct_dependent_settings.
348     {
349       'target_name': 'sync_internal_api_tests',
350       'type': 'none',
351       # We only want unit test executables to include this target.
352       'suppress_wildcard': 1,
353       'dependencies': [
354         '../base/base.gyp:base',
355         '../net/net.gyp:net',
356         '../net/net.gyp:net_test_support',
357         '../testing/gmock.gyp:gmock',
358         '../testing/gtest.gyp:gtest',
359         'sync',
360         'test_support_sync_internal_api',
361       ],
362       # Propagate all dependencies since the actual compilation
363       # happens in the dependents.
364       'export_dependent_settings': [
365         '../base/base.gyp:base',
366         '../net/net.gyp:net',
367         '../net/net.gyp:net_test_support',
368         '../testing/gmock.gyp:gmock',
369         '../testing/gtest.gyp:gtest',
370         'sync',
371         'test_support_sync_internal_api',
372       ],
373       'direct_dependent_settings': {
374         'include_dirs': [
375           '..',
376         ],
377         'sources': [
378           'internal_api/debug_info_event_listener_unittest.cc',
379           'internal_api/http_bridge_unittest.cc',
380           'internal_api/js_mutation_event_observer_unittest.cc',
381           'internal_api/js_sync_encryption_handler_observer_unittest.cc',
382           'internal_api/js_sync_manager_observer_unittest.cc',
383           'internal_api/public/change_record_unittest.cc',
384           'internal_api/public/sessions/sync_session_snapshot_unittest.cc',
385           'internal_api/syncapi_server_connection_manager_unittest.cc',
386           'internal_api/sync_encryption_handler_impl_unittest.cc',
387           'internal_api/sync_manager_impl_unittest.cc',
388         ],
389         'conditions': [
390           ['OS == "ios"', {
391             'sources!': [
392               'internal_api/http_bridge_unittest.cc',
393             ],
394           }],
395         ],
396       },
397     },
399     # Unit tests for the 'sync_api' target.  This cannot be a static
400     # library because the unit test files have to be compiled directly
401     # into the executable, so we push the target files to the
402     # depending executable target via direct_dependent_settings.
403     {
404       'target_name': 'sync_api_tests',
405       'type': 'none',
406       # We only want unit test executables to include this target.
407       'suppress_wildcard': 1,
408       'dependencies': [
409         '../base/base.gyp:base',
410         '../testing/gtest.gyp:gtest',
411         'sync',
412         'test_support_sync_internal_api',
413       ],
414       # Propagate all dependencies since the actual compilation
415       # happens in the dependents.
416       'export_dependent_settings': [
417         '../base/base.gyp:base',
418         '../testing/gtest.gyp:gtest',
419         'sync',
420         'test_support_sync_internal_api',
421       ],
422       'direct_dependent_settings': {
423         'include_dirs': [
424           '..',
425         ],
426         'sources': [
427           'api/sync_change_unittest.cc',
428           'api/sync_error_unittest.cc',
429           'api/sync_merge_result_unittest.cc',
430         ],
431       },
432     },
434     # The unit test executable for sync tests.
435     {
436       'target_name': 'sync_unit_tests',
437       'type': '<(gtest_target_type)',
438       # Typed-parametrized tests generate exit-time destructors.
439       'variables': { 'enable_wexit_time_destructors': 0, },
440       'defines': [
441         'SYNC_TEST',
442       ],
443       'dependencies': [
444         '../base/base.gyp:run_all_unittests',
445         'sync_api_tests',
446         'sync_core_tests',
447         'sync_internal_api_tests',
448         'sync_notifier_tests',
449       ],
450       'conditions': [
451         # TODO(akalin): This is needed because histogram.cc uses
452         # leak_annotations.h, which pulls this in.  Make 'base'
453         # propagate this dependency.
454         ['OS=="linux" and linux_use_tcmalloc==1', {
455           'dependencies': [
456             '../base/allocator/allocator.gyp:allocator',
457           ],
458         }],
459         ['OS == "android" and gtest_target_type == "shared_library"', {
460           'dependencies': [
461             '../testing/android/native_test.gyp:native_test_native_code',
462           ],
463         }],
464       ],
465     },
467     # Test support files for using the Test Accounts service.
468     {
469       'target_name': 'test_support_accounts_client',
470       'type': 'static_library',
471       'direct_dependent_settings': {
472         'include_dirs': [
473           '..',
474         ],
475       },
476       'dependencies': [
477         '../base/base.gyp:base',
478         '../net/net.gyp:net',
479       ],
480       'sources': [
481         'test/accounts_client/test_accounts_client.cc',
482         'test/accounts_client/test_accounts_client.h',
483         'test/accounts_client/url_request_context_getter.cc',
484         'test/accounts_client/url_request_context_getter.h',
485       ],
486     },
488     # The Sync end-to-end (and associated infrastructure) tests.
489     {
490       'target_name': 'sync_endtoend_tests',
491       'type': '<(gtest_target_type)',
492       'dependencies': [
493         '../base/base.gyp:run_all_unittests',
494         '../testing/gmock.gyp:gmock',
495         '../testing/gtest.gyp:gtest',
496         '../url/url.gyp:url_lib',
497         'test_support_accounts_client',
498       ],
499       'sources': [
500         'test/accounts_client/test_accounts_client_unittest.cc',
501       ],
502     },
504   ],
505   'conditions': [
506     ['OS != "ios"', {
507       'targets': [
508         {
509           'target_name': 'sync_tools_helper',
510           'type': 'static_library',
511           'defines': [
512             'SYNC_IMPLEMENTATION',
513           ],
514           'include_dirs': [
515             '..',
516           ],
517           'dependencies': [
518             '../base/base.gyp:base',
519             'sync',
520           ],
521           'export_dependent_settings': [
522             '../base/base.gyp:base',
523             'sync',
524           ],
525           'sources': [
526             'tools/null_invalidation_state_tracker.cc',
527             'tools/null_invalidation_state_tracker.h',
528           ],
529         },
531         # A tool that can be used to launch a python sync server instance.
532         {
533           'target_name': 'run_sync_testserver',
534           'type': 'executable',
535           'dependencies': [
536             '../base/base.gyp:base',
537             '../base/base.gyp:test_support_base',
538             '../net/net.gyp:net_test_support',
539             '../testing/gtest.gyp:gtest',
540             'test_support_sync_testserver',
541           ],
542           'sources': [
543             'tools/testserver/run_sync_testserver.cc',
544           ],
545         },
547         # A tool to listen to sync notifications and print them out.
548         {
549           'target_name': 'sync_listen_notifications',
550           'type': 'executable',
551           'defines': [
552             'SYNC_TEST',
553           ],
554           'dependencies': [
555             '../base/base.gyp:base',
556             '../jingle/jingle.gyp:notifier',
557             '../net/net.gyp:net',
558             '../net/net.gyp:net_test_support',
559             'sync',
560             'sync_tools_helper',
561           ],
562           'sources': [
563             'tools/sync_listen_notifications.cc',
564           ],
565         },
567         # A standalone command-line sync client.
568         {
569           'target_name': 'sync_client',
570           'type': 'executable',
571           'defines': [
572             'SYNC_TEST',
573           ],
574           'dependencies': [
575             '../base/base.gyp:base',
576             '../jingle/jingle.gyp:notifier',
577             '../net/net.gyp:net',
578             '../net/net.gyp:net_test_support',
579             'sync',
580             'sync_tools_helper',
581             'test_support_sync_core'
582           ],
583           'sources': [
584             'tools/sync_client.cc',
585           ],
586         },
587       ],
588     }],
589     ['OS == "android"', {
590       'targets': [
591         {
592           'target_name': 'sync_javatests',
593           'type': 'none',
594           'variables': {
595             'java_in_dir': '../sync/android/javatests',
596           },
597           'dependencies': [
598             'sync_java',
599             'sync_java_test_support',
600             '../base/base.gyp:base_java_test_support',
601           ],
602           'includes': [ '../build/java.gypi' ],
603         },
604         {
605           'target_name': 'sync_java_test_support',
606           'type': 'none',
607           'variables': {
608             'package_name': 'sync_java_test_support',
609             'java_in_dir': '../sync/test/android/javatests',
610           },
611           'dependencies': [
612             'sync_java',
613           ],
614           'includes': [ '../build/java.gypi' ],
615         },
616       ],
617     }],
618     # Special target to wrap a gtest_target_type==shared_library
619     # sync_unit_tests into an android apk for execution.
620     ['OS == "android" and gtest_target_type == "shared_library"', {
621       'targets': [
622         {
623           'target_name': 'sync_unit_tests_apk',
624           'type': 'none',
625           'dependencies': [
626             'sync_unit_tests',
627           ],
628           'variables': {
629             'test_suite_name': 'sync_unit_tests',
630             'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit_tests<(SHARED_LIB_SUFFIX)',
631           },
632           'includes': [ '../build/apk_test.gypi' ],
633         },
634       ],
635     }],
636   ],