OLD | NEW |
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 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 ], | 413 ], |
414 'sources': [ | 414 'sources': [ |
415 'internal_api/debug_info_event_listener_unittest.cc', | 415 'internal_api/debug_info_event_listener_unittest.cc', |
416 'internal_api/http_bridge_unittest.cc', | 416 'internal_api/http_bridge_unittest.cc', |
417 'internal_api/js_mutation_event_observer_unittest.cc', | 417 'internal_api/js_mutation_event_observer_unittest.cc', |
418 'internal_api/js_sync_encryption_handler_observer_unittest.cc', | 418 'internal_api/js_sync_encryption_handler_observer_unittest.cc', |
419 'internal_api/js_sync_manager_observer_unittest.cc', | 419 'internal_api/js_sync_manager_observer_unittest.cc', |
420 'internal_api/protocol_event_buffer_unittest.cc', | 420 'internal_api/protocol_event_buffer_unittest.cc', |
421 'internal_api/public/change_record_unittest.cc', | 421 'internal_api/public/change_record_unittest.cc', |
422 'internal_api/public/sessions/sync_session_snapshot_unittest.cc', | 422 'internal_api/public/sessions/sync_session_snapshot_unittest.cc', |
| 423 'internal_api/sync_backup_manager_unittest.cc', |
423 'internal_api/sync_core_proxy_impl_unittest.cc', | 424 'internal_api/sync_core_proxy_impl_unittest.cc', |
424 'internal_api/sync_encryption_handler_impl_unittest.cc', | 425 'internal_api/sync_encryption_handler_impl_unittest.cc', |
425 'internal_api/sync_manager_impl_unittest.cc', | 426 'internal_api/sync_manager_impl_unittest.cc', |
| 427 'internal_api/sync_rollback_manager_base_unittest.cc', |
| 428 'internal_api/sync_rollback_manager_unittest.cc', |
426 'internal_api/syncapi_server_connection_manager_unittest.cc', | 429 'internal_api/syncapi_server_connection_manager_unittest.cc', |
427 ], | 430 ], |
428 'conditions': [ | 431 'conditions': [ |
429 ['OS == "ios"', { | 432 ['OS == "ios"', { |
430 'sources!': [ | 433 'sources!': [ |
431 'internal_api/http_bridge_unittest.cc', | 434 'internal_api/http_bridge_unittest.cc', |
432 ], | 435 ], |
433 }], | 436 }], |
434 ], | 437 ], |
435 }, | 438 }, |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 'variables': { | 697 'variables': { |
695 'test_suite_name': 'sync_unit_tests', | 698 'test_suite_name': 'sync_unit_tests', |
696 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 699 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
697 }, | 700 }, |
698 'includes': [ '../build/apk_test.gypi' ], | 701 'includes': [ '../build/apk_test.gypi' ], |
699 }, | 702 }, |
700 ], | 703 ], |
701 }], | 704 }], |
702 ], | 705 ], |
703 } | 706 } |
OLD | NEW |