| OLD | NEW |
| 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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 4643 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4654 # E.g. build/{linux|mac}/chrome_linux.croc | 4654 # E.g. build/{linux|mac}/chrome_linux.croc |
| 4655 'dependencies': [ | 4655 'dependencies': [ |
| 4656 '../base/base.gyp:base_unittests', | 4656 '../base/base.gyp:base_unittests', |
| 4657 '../media/media.gyp:media_unittests', | 4657 '../media/media.gyp:media_unittests', |
| 4658 '../net/net.gyp:net_unittests', | 4658 '../net/net.gyp:net_unittests', |
| 4659 '../printing/printing.gyp:printing_unittests', | 4659 '../printing/printing.gyp:printing_unittests', |
| 4660 'unit_tests', | 4660 'unit_tests', |
| 4661 ], | 4661 ], |
| 4662 'actions': [ | 4662 'actions': [ |
| 4663 { | 4663 { |
| 4664 # 'message' for Linux/scons in particular | 4664 # 'message' for Linux/scons in particular. Scons |
| 4665 # requires the 'coverage' target be run from within |
| 4666 # src/chrome. |
| 4665 'message': 'Running coverage_posix.py to generate coverage numbers
', | 4667 'message': 'Running coverage_posix.py to generate coverage numbers
', |
| 4666 'inputs': [], | 4668 'inputs': [], |
| 4667 'outputs': [], | 4669 'outputs': [], |
| 4668 'action_name': 'coverage', | 4670 'action_name': 'coverage', |
| 4669 'action': [ 'python', | 4671 'action': [ 'python', |
| 4670 '../tools/code_coverage/coverage_posix.py', | 4672 '../tools/code_coverage/coverage_posix.py', |
| 4671 '--directory', | 4673 '--directory', |
| 4672 '<(PRODUCT_DIR)', | 4674 '<(PRODUCT_DIR)', |
| 4673 '--', | 4675 '--', |
| 4674 '<@(_dependencies)'], | 4676 '<@(_dependencies)'], |
| 4675 # Use outputs of this action as inputs for the main target build. | 4677 # Use outputs of this action as inputs for the main target build. |
| 4676 # Seems as a misnomer but makes this happy on Linux (scons). | 4678 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4677 'process_outputs_as_sources': 1, | 4679 'process_outputs_as_sources': 1, |
| 4678 }, | 4680 }, |
| 4679 ], # 'actions' | 4681 ], # 'actions' |
| 4680 }, | 4682 }, |
| 4681 ] | 4683 ] |
| 4682 }], | 4684 }], |
| 4683 ], # 'conditions' | 4685 ], # 'conditions' |
| 4684 } | 4686 } |
| OLD | NEW |