| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 '../testing/gmock.gyp:gmock', | 411 '../testing/gmock.gyp:gmock', |
| 412 '../testing/gtest.gyp:gtest', | 412 '../testing/gtest.gyp:gtest', |
| 413 'sync', | 413 'sync', |
| 414 'test_support_sync_internal_api', | 414 'test_support_sync_internal_api', |
| 415 ], | 415 ], |
| 416 'direct_dependent_settings': { | 416 'direct_dependent_settings': { |
| 417 'include_dirs': [ | 417 'include_dirs': [ |
| 418 '..', | 418 '..', |
| 419 ], | 419 ], |
| 420 'sources': [ | 420 'sources': [ |
| 421 'internal_api/attachments/fake_attachment_store_unittest.cc', |
| 422 'internal_api/attachments/fake_attachment_uploader_unittest.cc', |
| 421 'internal_api/debug_info_event_listener_unittest.cc', | 423 'internal_api/debug_info_event_listener_unittest.cc', |
| 422 'internal_api/http_bridge_unittest.cc', | 424 'internal_api/http_bridge_unittest.cc', |
| 423 'internal_api/js_mutation_event_observer_unittest.cc', | 425 'internal_api/js_mutation_event_observer_unittest.cc', |
| 424 'internal_api/js_sync_encryption_handler_observer_unittest.cc', | 426 'internal_api/js_sync_encryption_handler_observer_unittest.cc', |
| 425 'internal_api/js_sync_manager_observer_unittest.cc', | 427 'internal_api/js_sync_manager_observer_unittest.cc', |
| 426 'internal_api/protocol_event_buffer_unittest.cc', | 428 'internal_api/protocol_event_buffer_unittest.cc', |
| 427 'internal_api/public/change_record_unittest.cc', | 429 'internal_api/public/change_record_unittest.cc', |
| 428 'internal_api/public/sessions/sync_session_snapshot_unittest.cc', | 430 'internal_api/public/sessions/sync_session_snapshot_unittest.cc', |
| 429 'internal_api/sync_backup_manager_unittest.cc', | 431 'internal_api/sync_backup_manager_unittest.cc', |
| 430 'internal_api/sync_core_proxy_impl_unittest.cc', | 432 'internal_api/sync_core_proxy_impl_unittest.cc', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 'test_support_sync_internal_api', | 470 'test_support_sync_internal_api', |
| 469 ], | 471 ], |
| 470 'direct_dependent_settings': { | 472 'direct_dependent_settings': { |
| 471 'include_dirs': [ | 473 'include_dirs': [ |
| 472 '..', | 474 '..', |
| 473 ], | 475 ], |
| 474 'sources': [ | 476 'sources': [ |
| 475 'api/attachments/attachment_unittest.cc', | 477 'api/attachments/attachment_unittest.cc', |
| 476 'api/attachments/attachment_id_unittest.cc', | 478 'api/attachments/attachment_id_unittest.cc', |
| 477 'api/attachments/attachment_service_proxy_unittest.cc', | 479 'api/attachments/attachment_service_proxy_unittest.cc', |
| 478 'api/attachments/fake_attachment_store_unittest.cc', | |
| 479 'api/attachments/fake_attachment_uploader_unittest.cc', | |
| 480 'api/sync_change_unittest.cc', | 480 'api/sync_change_unittest.cc', |
| 481 'api/sync_data_unittest.cc', | 481 'api/sync_data_unittest.cc', |
| 482 'api/sync_error_unittest.cc', | 482 'api/sync_error_unittest.cc', |
| 483 'api/sync_merge_result_unittest.cc', | 483 'api/sync_merge_result_unittest.cc', |
| 484 ], | 484 ], |
| 485 }, | 485 }, |
| 486 }, | 486 }, |
| 487 | 487 |
| 488 # The unit test executable for sync tests. | 488 # The unit test executable for sync tests. |
| 489 { | 489 { |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 ], | 682 ], |
| 683 'variables': { | 683 'variables': { |
| 684 'test_suite_name': 'sync_unit_tests', | 684 'test_suite_name': 'sync_unit_tests', |
| 685 }, | 685 }, |
| 686 'includes': [ '../build/apk_test.gypi' ], | 686 'includes': [ '../build/apk_test.gypi' ], |
| 687 }, | 687 }, |
| 688 ], | 688 ], |
| 689 }], | 689 }], |
| 690 ], | 690 ], |
| 691 } | 691 } |
| OLD | NEW |