Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: base/base.gyp

Issue 11111014: Add support for coverage=1 builds on iOS (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Style tweak Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698