Chromium Code Reviews| 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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 573 ['exclude', '^process_util_unittest'], | 573 ['exclude', '^process_util_unittest'], |
| 574 ['include', '^process_util_unittest_ios\\.cc$'], | 574 ['include', '^process_util_unittest_ios\\.cc$'], |
| 575 # Requires spawning processes. | 575 # Requires spawning processes. |
| 576 ['exclude', '^metrics/stats_table_unittest\\.cc$'], | 576 ['exclude', '^metrics/stats_table_unittest\\.cc$'], |
| 577 # TODO(ios): Remove these as base/ is unforked. | 577 # TODO(ios): Remove these as base/ is unforked. |
| 578 # For now, exclude everything that doesn't build as-is, just to | 578 # For now, exclude everything that doesn't build as-is, just to |
| 579 # get a minimal target building. | 579 # get a minimal target building. |
| 580 # Unittests that don't pass. | 580 # Unittests that don't pass. |
| 581 ['exclude', '^message_loop_unittest\\.cc$'], | 581 ['exclude', '^message_loop_unittest\\.cc$'], |
| 582 ], | 582 ], |
| 583 'conditions': [ | |
| 584 ['coverage != 0', { | |
| 585 # These sources can't be built with coverage due to a toolchain | |
| 586 # bug: http://openradar.appspot.com/radar?id=1499403 | |
|
Mark Mentovai
2012/10/12 13:22:24
Gross.
| |
| 587 'sources!': [ | |
| 588 'json/json_reader_unittest.cc', | |
| 589 'string_piece_unittest.cc', | |
| 590 ], | |
| 591 }], | |
| 592 ], | |
| 583 'actions': [ | 593 'actions': [ |
| 584 { | 594 { |
| 585 'action_name': 'copy_test_data', | 595 'action_name': 'copy_test_data', |
| 586 'variables': { | 596 'variables': { |
| 587 'test_data_files': [ | 597 'test_data_files': [ |
| 588 'data/json/bom_feff.json', | 598 'data/json/bom_feff.json', |
| 589 'data/file_util_unittest', | 599 'data/file_util_unittest', |
| 590 ], | 600 ], |
| 591 'test_data_prefix': 'base', | 601 'test_data_prefix': 'base', |
| 592 }, | 602 }, |
| (...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1057 '--result', '<@(_outputs)', | 1067 '--result', '<@(_outputs)', |
| 1058 '--isolate', 'base_unittests.isolate', | 1068 '--isolate', 'base_unittests.isolate', |
| 1059 ], | 1069 ], |
| 1060 }, | 1070 }, |
| 1061 ], | 1071 ], |
| 1062 }, | 1072 }, |
| 1063 ], | 1073 ], |
| 1064 }], | 1074 }], |
| 1065 ], | 1075 ], |
| 1066 } | 1076 } |
| OLD | NEW |