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

Side by Side Diff: chrome/chrome.gyp

Issue 307032: Fix coverage on the Mac. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | tools/code_coverage/coverage_posix.py » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 9 'variables': {
10 'version_py_path': 'tools/build/version.py', 10 'version_py_path': 'tools/build/version.py',
(...skipping 6474 matching lines...) Expand 10 before | Expand all | Expand 10 after
6485 { 'targets': [ 6485 { 'targets': [
6486 { 6486 {
6487 'target_name': 'coverage', 6487 'target_name': 'coverage',
6488 # do NOT place this in the 'all' list; most won't want it. 6488 # do NOT place this in the 'all' list; most won't want it.
6489 # In gyp, booleans are 0/1 not True/False. 6489 # In gyp, booleans are 0/1 not True/False.
6490 'suppress_wildcard': 1, 6490 'suppress_wildcard': 1,
6491 'type': 'none', 6491 'type': 'none',
6492 # If you add new tests here you may need to update the croc configs. 6492 # If you add new tests here you may need to update the croc configs.
6493 # E.g. build/{linux|mac}/chrome_linux.croc 6493 # E.g. build/{linux|mac}/chrome_linux.croc
6494 'dependencies': [ 6494 'dependencies': [
6495 'automated_ui_tests',
6496 '../app/app.gyp:app_unittests',
6495 '../base/base.gyp:base_unittests', 6497 '../base/base.gyp:base_unittests',
6496 '../ipc/ipc.gyp:ipc_tests', 6498 '../ipc/ipc.gyp:ipc_tests',
6497 '../media/media.gyp:media_unittests', 6499 '../media/media.gyp:media_unittests',
6498 '../net/net.gyp:net_unittests', 6500 '../net/net.gyp:net_unittests',
6499 '../printing/printing.gyp:printing_unittests', 6501 '../printing/printing.gyp:printing_unittests',
6502 'ui_tests',
6500 'unit_tests', 6503 'unit_tests',
6501 ], 6504 ],
6502 'actions': [ 6505 'actions': [
6503 { 6506 {
6504 # 'message' for Linux/scons in particular. Scons 6507 # 'message' for Linux/scons in particular. Scons
6505 # requires the 'coverage' target be run from within 6508 # requires the 'coverage' target be run from within
6506 # src/chrome. 6509 # src/chrome.
6507 'message': 'Running coverage_posix.py to generate coverage numbers ', 6510 'message': 'Running coverage_posix.py to generate coverage numbers ',
6508 # MSVS must have an input file and an output file. 6511 # MSVS must have an input file and an output file.
6509 'inputs': [ '../tools/code_coverage/coverage_posix.py' ], 6512 'inputs': [ '../tools/code_coverage/coverage_posix.py' ],
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
6898 ], # targets when browser_sync==1 6901 ], # targets when browser_sync==1
6899 }], 6902 }],
6900 ], # 'conditions' 6903 ], # 'conditions'
6901 } 6904 }
6902 6905
6903 # Local Variables: 6906 # Local Variables:
6904 # tab-width:2 6907 # tab-width:2
6905 # indent-tabs-mode:nil 6908 # indent-tabs-mode:nil
6906 # End: 6909 # End:
6907 # vim: set expandtab tabstop=2 shiftwidth=2: 6910 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | tools/code_coverage/coverage_posix.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698