1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
# Copyright (c) 2010 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [
{
'target_name': 'ceee_all',
'type': 'none',
'dependencies': [
'common/common.gyp:ceee_common_unittests',
'ie/ie.gyp:ceee_ie_all',
'firefox/firefox.gyp:xpi',
'installer_dll/ceee_installer_dll.gyp:*',
'testing/manual/ie_broker/call_broker/call_broker.gyp:call_broker',
]
},
],
'conditions': [
# To enable the coverage targets, do
# GYP_DEFINES='coverage=1' gclient sync
['coverage!=0',
{ 'targets': [
{
### Coverage BUILD AND RUN.
### Not named coverage_build_and_run for historical reasons.
'target_name': 'ceee_coverage',
'dependencies': [ 'ceee_coverage_build', 'ceee_coverage_run' ],
# do NOT place this in the 'all' list; most won't want it.
# In gyp, booleans are 0/1 not True/False.
'suppress_wildcard': 1,
'type': 'none',
'actions': [
{
'message': 'Coverage is now complete.',
# MSVS must have an input file and an output file.
'inputs': [ '<(PRODUCT_DIR)/ceee_coverage.info' ],
'outputs': [ '<(PRODUCT_DIR)/ceee_coverage-build-and-run.stamp' ],
'action_name': 'ceee_coverage',
# Wish gyp had some basic builtin commands (e.g. 'touch').
'action': [ 'python', '-c',
'import os; ' \
'open(' \
'\'<(PRODUCT_DIR)\' + os.path.sep + ' \
'\'ceee_coverage-build-and-run.stamp\'' \
', \'w\').close()' ],
# Use outputs of this action as inputs for the main target build.
# Seems as a misnomer but makes this happy on Linux (scons).
'process_outputs_as_sources': 1,
},
], # 'actions'
},
### Coverage BUILD. Compile only; does not run the bundles.
### Intended as the build phase for our coverage bots.
###
### Builds unit test bundles needed for coverage.
### Outputs this list of bundles into coverage_bundles.py.
###
### If you want to both build and run coverage from your IDE,
### use the 'coverage' target.
{
'target_name': 'ceee_coverage_build',
# do NOT place this in the 'all' list; most won't want it.
# In gyp, booleans are 0/1 not True/False.
'suppress_wildcard': 1,
'type': 'none',
'dependencies': [
'ie/ie.gyp:ie_unittests',
'ie/ie.gyp:mediumtest_ie',
'common/common.gyp:ceee_common_unittests',
], # 'dependencies'
'actions': [
{
# TODO(jrg@chromium.org):
# Technically I want inputs to be the list of
# executables created in <@(_dependencies) but use of
# that variable lists the dep by dep name, not their
# output executable name.
# Is there a better way to force this action to run, always?
#
# If a test bundle is added to this coverage_build target it
# necessarily means this file (ceee.gyp) is changed,
# so the action is run (coverage_bundles.py is generated).
# Exceptions to that rule are theoretically possible
# (e.g. re-gyp with a GYP_DEFINES set).
# Else it's the same list of bundles as last time. They are
# built (since on the deps list) but the action may not run.
# For now, things work, but it's less than ideal.
'inputs': [ 'ceee.gyp' ],
'outputs': [ '<(PRODUCT_DIR)/ceee_ie_coverage_bundles.py' ],
'action_name': 'ceee_coverage_build',
'action': [ 'python', '-c',
'import os; '
'f = open(' \
'\'<(PRODUCT_DIR)\' + os.path.sep + ' \
'\'coverage_bundles.py\'' \
', \'w\'); ' \
'deplist = \'' \
'<@(_dependencies)' \
'\'.split(\' \'); ' \
'f.write(str(deplist)); ' \
'f.close()'],
# Use outputs of this action as inputs for the main target build.
# Seems as a misnomer but makes this happy on Linux (scons).
'process_outputs_as_sources': 1,
},
], # 'actions'
},
### Coverage RUN. Does not compile the bundles. Mirrors the
### run_coverage_bundles buildbot phase. If you update this
### command update the mirror in
### $BUILDBOT/scripts/master/factory/chromium_commands.py.
### If you want both build and run, use the 'ceee_coverage' target.
{
'target_name': 'ceee_coverage_run',
'dependencies': [ 'ceee_coverage_build' ],
# do NOT place this in the 'all' list; most won't want it.
# In gyp, booleans are 0/1 not True/False.
'suppress_wildcard': 1,
'type': 'none',
'actions': [
{
# MSVS must have an input file and an output file.
'inputs': [ '<(PRODUCT_DIR)/coverage_bundles.py' ],
'outputs': [ '<(PRODUCT_DIR)/coverage.info' ],
'action_name': 'ceee_coverage_run',
'action': [ 'python',
'../tools/code_coverage/coverage_posix.py',
'--directory',
'<(PRODUCT_DIR)',
'--src_root',
'.',
'--bundles',
'<(PRODUCT_DIR)/coverage_bundles.py',
],
# Use outputs of this action as inputs for the main target build.
# Seems as a misnomer but makes this happy on Linux (scons).
'process_outputs_as_sources': 1,
},
], # 'actions'
},
],
}, ], # 'coverage!=0'
], # 'conditions'
}
|