mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
30f8839c06
This patch changes Firefox Health Report to pull crash counts from the newly-implemented crash manager. The crash manager is now the canonical source of crash data, so all the code for reading crash dump files from disk has been removed. This regresses the collection capability of Firefox Health Report by removing plugin crashes and hangs from the reported values. This regression is intended to be temporary and a follow-up bug will be created to add plugin process event recording to the crash events system. This regression has been justified because the old crash reporting mechanism was severely flawed and wasn't sending accurate data (not all crashes were being saved to dumps and some dumps would be deleted). --HG-- extra : amend_source : d54bb3bf9f740508cb4eda286536ce16a4c3bee5
14 lines
437 B
Python
14 lines
437 B
Python
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
SPHINX_TREES['healthreport'] = 'docs'
|
|
|
|
TEST_DIRS += ['tests']
|
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
'HealthReportComponents.manifest',
|
|
]
|