summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorPale Moon <git-repo@palemoon.org>2015-02-02 04:59:09 +0100
committerPale Moon <git-repo@palemoon.org>2015-02-02 04:59:09 +0100
commitb22832b4a82f22f9f9c3440e5ad5e87266f77660 (patch)
tree3b161a02e30e55f8e9049c864a46239063c35494 /config
parenta44d8f1a0c29cb0ac2ccac63e8834d184ed8a4b5 (diff)
downloadpalemoon-gre-b22832b4a82f22f9f9c3440e5ad5e87266f77660.tar.gz
Remove crashreporter/URL references throughout the tree.
Diffstat (limited to 'config')
-rw-r--r--config/tests/unit-writemozinfo.py10
-rw-r--r--config/writemozinfo.py1
2 files changed, 0 insertions, 11 deletions
diff --git a/config/tests/unit-writemozinfo.py b/config/tests/unit-writemozinfo.py
index e527fb088..d310e3e7f 100644
--- a/config/tests/unit-writemozinfo.py
+++ b/config/tests/unit-writemozinfo.py
@@ -146,16 +146,6 @@ class TestBuildDict(unittest.TestCase):
"""
Test that crashreporter values are properly detected.
"""
- d = build_dict({'OS_TARGET':'Linux',
- 'TARGET_CPU':'i386',
- 'MOZ_WIDGET_TOOLKIT':'gtk2'})
- self.assertEqual(False, d['crashreporter'])
-
- d = build_dict({'OS_TARGET':'Linux',
- 'TARGET_CPU':'i386',
- 'MOZ_WIDGET_TOOLKIT':'gtk2',
- 'MOZ_CRASHREPORTER':'1'})
- self.assertEqual(True, d['crashreporter'])
class TestWriteJson(unittest.TestCase):
"""
diff --git a/config/writemozinfo.py b/config/writemozinfo.py
index 68f50ad93..ae653b411 100644
--- a/config/writemozinfo.py
+++ b/config/writemozinfo.py
@@ -82,7 +82,6 @@ def build_dict(env=None):
# other CPUs will wind up with unknown bits
d['debug'] = substs.get('MOZ_DEBUG') == '1'
- d['crashreporter'] = substs.get('MOZ_CRASHREPORTER') == '1'
d['asan'] = substs.get('MOZ_ASAN') == '1'
d['tests_enabled'] = substs.get('ENABLE_TESTS') == "1"
d['bin_suffix'] = substs.get('BIN_SUFFIX', '')