author | Alessio Placitelli <alessio.placitelli@gmail.com> |
Thu, 19 Feb 2015 22:20:00 -0800 | |
changeset 229941 | ee9a8d36a96ab43388b2f38b2327a94ea88e0aff |
parent 229940 | ac7c99989aa56f04e181ed5fe63b8540cf9cd06f |
child 229942 | 80bd1ae9dd0af4a6e12f2a4cdf448179de1ae2e1 |
push id | 28303 |
push user | cbook@mozilla.com |
push date | Fri, 20 Feb 2015 14:07:30 +0000 |
treeherder | mozilla-central@80bd1ae9dd0a [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | ted |
bugs | 1075055 |
milestone | 38.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/python/mozbuild/mozbuild/mozinfo.py +++ b/python/mozbuild/mozbuild/mozinfo.py @@ -78,16 +78,17 @@ def build_dict(config, env=os.environ): # other CPUs will wind up with unknown bits d['debug'] = substs.get('MOZ_DEBUG') == '1' d['crashreporter'] = bool(substs.get('MOZ_CRASHREPORTER')) d['datareporting'] = bool(substs.get('MOZ_DATA_REPORTING')) d['healthreport'] = substs.get('MOZ_SERVICES_HEALTHREPORT') == '1' d['asan'] = substs.get('MOZ_ASAN') == '1' d['tsan'] = substs.get('MOZ_TSAN') == '1' + d['telemetry'] = substs.get('MOZ_TELEMETRY_REPORTING') == '1' d['tests_enabled'] = substs.get('ENABLE_TESTS') == "1" d['bin_suffix'] = substs.get('BIN_SUFFIX', '') d['webm'] = bool(substs.get('MOZ_WEBM')) d['wave'] = bool(substs.get('MOZ_WAVE')) d['official'] = bool(substs.get('MOZILLA_OFFICIAL'))