summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2021-11-29 17:34:58 -0500
committerMatt A. Tobin <email@mattatobin.com>2021-11-29 17:34:58 -0500
commit1525bc70f70afed5f6d7d70e4dcc1054a06b1d8c (patch)
tree0098cdd74a80fb95f1ecd1d49504176196373767 /python
parent9c1d44310116bc9965b4b44720280d20b7364b01 (diff)
downloadaura-central-1525bc70f70afed5f6d7d70e4dcc1054a06b1d8c.tar.gz
No Issue - Remove some unused build vars
Set them to false in AppConstants.jsm for possible bc
Diffstat (limited to 'python')
-rwxr-xr-xpython/mozbuild/mozbuild/mozinfo.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/python/mozbuild/mozbuild/mozinfo.py b/python/mozbuild/mozbuild/mozinfo.py
index 8fca024c9..d0087d31a 100755
--- a/python/mozbuild/mozbuild/mozinfo.py
+++ b/python/mozbuild/mozbuild/mozinfo.py
@@ -79,12 +79,9 @@ def build_dict(config, env=os.environ):
d['nightly_build'] = substs.get('NIGHTLY_BUILD') == '1'
d['release_or_beta'] = substs.get('RELEASE_OR_BETA') == '1'
d['pgo'] = substs.get('MOZ_PGO') == '1'
- d['datareporting'] = bool(substs.get('MOZ_DATA_REPORTING'))
- d['healthreport'] = substs.get('MOZ_SERVICES_HEALTHREPORT') == '1'
d['sync'] = substs.get('MOZ_SERVICES_SYNC') == '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['official'] = bool(substs.get('MC_OFFICIAL'))