OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 # The core sync library. | 10 # The core sync library. |
(...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 'syncable/syncable_id_unittest.cc', | 631 'syncable/syncable_id_unittest.cc', |
632 'syncable/syncable_unittest.cc', | 632 'syncable/syncable_unittest.cc', |
633 'util/cryptographer_unittest.cc', | 633 'util/cryptographer_unittest.cc', |
634 'util/data_encryption_win_unittest.cc', | 634 'util/data_encryption_win_unittest.cc', |
635 'util/data_type_histogram_unittest.cc', | 635 'util/data_type_histogram_unittest.cc', |
636 'util/get_session_name_unittest.cc', | 636 'util/get_session_name_unittest.cc', |
637 'util/nigori_unittest.cc', | 637 'util/nigori_unittest.cc', |
638 'util/protobuf_unittest.cc', | 638 'util/protobuf_unittest.cc', |
639 'internal_api/public/util/weak_handle_unittest.cc', | 639 'internal_api/public/util/weak_handle_unittest.cc', |
640 ], | 640 ], |
| 641 'conditions': [ |
| 642 ['OS == "ios" and coverage != 0', { |
| 643 # These sources can't be built with coverage due to a toolchain |
| 644 # bug: http://openradar.appspot.com/radar?id=1499403 |
| 645 'sources!': [ |
| 646 'engine/syncer_unittest.cc', |
| 647 ], |
| 648 }], |
| 649 ], |
641 }, | 650 }, |
642 }, | 651 }, |
643 | 652 |
644 # Unit tests for the 'sync_notifier' target. This cannot be a static | 653 # Unit tests for the 'sync_notifier' target. This cannot be a static |
645 # library because the unit test files have to be compiled directly | 654 # library because the unit test files have to be compiled directly |
646 # into the executable, so we push the target files to the | 655 # into the executable, so we push the target files to the |
647 # depending executable target via direct_dependent_settings. | 656 # depending executable target via direct_dependent_settings. |
648 { | 657 { |
649 'target_name': 'sync_notifier_tests', | 658 'target_name': 'sync_notifier_tests', |
650 'type': 'none', | 659 'type': 'none', |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
892 'variables': { | 901 'variables': { |
893 'test_suite_name': 'sync_unit_tests', | 902 'test_suite_name': 'sync_unit_tests', |
894 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', | 903 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)sync_unit
_tests<(SHARED_LIB_SUFFIX)', |
895 }, | 904 }, |
896 'includes': [ '../build/apk_test.gypi' ], | 905 'includes': [ '../build/apk_test.gypi' ], |
897 }, | 906 }, |
898 ], | 907 ], |
899 }], | 908 }], |
900 ], | 909 ], |
901 } | 910 } |
OLD | NEW |