| 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 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 ['OS == "ios"', { | 667 ['OS == "ios"', { |
| 668 'sources/': [ | 668 'sources/': [ |
| 669 # Only test the iOS-meaningful portion of process_utils. | 669 # Only test the iOS-meaningful portion of process_utils. |
| 670 ['exclude', '^process_util_unittest'], | 670 ['exclude', '^process_util_unittest'], |
| 671 ['include', '^process_util_unittest_ios\\.cc$'], | 671 ['include', '^process_util_unittest_ios\\.cc$'], |
| 672 # Requires spawning processes. | 672 # Requires spawning processes. |
| 673 ['exclude', '^metrics/stats_table_unittest\\.cc$'], | 673 ['exclude', '^metrics/stats_table_unittest\\.cc$'], |
| 674 # iOS does not use message_pump_libevent. | 674 # iOS does not use message_pump_libevent. |
| 675 ['exclude', '^message_pump_libevent_unittest\\.cc$'], | 675 ['exclude', '^message_pump_libevent_unittest\\.cc$'], |
| 676 ['exclude', '^prefs/json_pref_store_unittest.\\cc$'], | 676 ['exclude', '^prefs/json_pref_store_unittest.\\cc$'], |
| 677 | |
| 678 ], | 677 ], |
| 679 'conditions': [ | 678 'conditions': [ |
| 680 ['coverage != 0', { | 679 ['coverage != 0', { |
| 681 'sources!': [ | 680 'sources!': [ |
| 682 # These sources can't be built with coverage due to a toolchain | 681 # These sources can't be built with coverage due to a toolchain |
| 683 # bug: http://openradar.appspot.com/radar?id=1499403 | 682 # bug: http://openradar.appspot.com/radar?id=1499403 |
| 684 'json/json_reader_unittest.cc', | 683 'json/json_reader_unittest.cc', |
| 685 'string_piece_unittest.cc', | 684 'string_piece_unittest.cc', |
| 686 | 685 |
| 687 # These tests crash when run with coverage turned on due to an | 686 # These tests crash when run with coverage turned on due to an |
| 688 # issue with llvm_gcda_increment_indirect_counter: | 687 # issue with llvm_gcda_increment_indirect_counter: |
| 689 # http://crbug.com/156058 | 688 # http://crbug.com/156058 |
| 690 'debug/trace_event_unittest.cc', | 689 'debug/trace_event_unittest.cc', |
| 691 'debug/trace_event_unittest.h', | 690 'debug/trace_event_unittest.h', |
| 692 'logging_unittest.cc', | 691 'logging_unittest.cc', |
| 693 'string_util_unittest.cc', | 692 'string_util_unittest.cc', |
| 694 'test/trace_event_analyzer_unittest.cc', | 693 'test/trace_event_analyzer_unittest.cc', |
| 695 'utf_offset_string_conversions_unittest.cc', | 694 'utf_offset_string_conversions_unittest.cc', |
| 696 ], | 695 ], |
| 697 }], | 696 }], |
| 698 ], | 697 ], |
| 699 'actions': [ | 698 'actions': [ |
| 700 { | 699 { |
| 701 'action_name': 'copy_test_data', | 700 'action_name': 'copy_test_data', |
| 702 'variables': { | 701 'variables': { |
| 703 'test_data_files': [ | 702 'test_data_files': [ |
| 704 'data/json/bom_feff.json', | 703 'data/json/bom_feff.json', |
| 705 'data/file_util_unittest', | 704 'data/file_util_unittest', |
| 705 'test/data', |
| 706 ], | 706 ], |
| 707 'test_data_prefix': 'base', | 707 'test_data_prefix': 'base', |
| 708 }, | 708 }, |
| 709 'includes': [ '../build/copy_test_data_ios.gypi' ], | 709 'includes': [ '../build/copy_test_data_ios.gypi' ], |
| 710 }, | 710 }, |
| 711 ], | 711 ], |
| 712 }], | 712 }], |
| 713 ['use_glib==1', { | 713 ['use_glib==1', { |
| 714 'sources!': [ | 714 'sources!': [ |
| 715 'file_version_info_unittest.cc', | 715 'file_version_info_unittest.cc', |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1220 'base_unittests.isolate', | 1220 'base_unittests.isolate', |
| 1221 ], | 1221 ], |
| 1222 'sources': [ | 1222 'sources': [ |
| 1223 'base_unittests.isolate', | 1223 'base_unittests.isolate', |
| 1224 ], | 1224 ], |
| 1225 }, | 1225 }, |
| 1226 ], | 1226 ], |
| 1227 }], | 1227 }], |
| 1228 ], | 1228 ], |
| 1229 } | 1229 } |
| OLD | NEW |