Files
tubestation/toolkit/components/crashes/moz.build
Tooru Fujisawa 873aca4180 Bug 1765919 - Rename CrashManager.jsm.in to CrashManager.in.jsm to apply JSM eslint rules. r=gsvelto
CRASH_MANAGER_PROCESS_PINGS is modified to substitute only the properties of
the object, in order to let eslint use the `processPings` local variable while
linting CrashManager.in.jsm.

Also applied the eslint --fix.

Differential Revision: https://phabricator.services.mozilla.com/D144788
2022-04-28 11:17:57 +00:00

45 lines
1.0 KiB
Python

# -*- Mode: python; 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["crash-manager"] = "docs"
with Files("docs/**"):
SCHEDULES.exclusive = ["docs"]
DEFINES["OBJDIR"] = OBJDIR
XPIDL_MODULE = "toolkit_crashservice"
XPIDL_SOURCES += [
"nsICrashService.idl",
]
if CONFIG["MOZ_CRASHREPORTER"]:
GeneratedFile(
"CrashManager.jsm",
script="gen_CrashManager.py",
entry_point="main",
inputs=["CrashManager.in.jsm"],
)
EXTRA_JS_MODULES += [
"!CrashManager.jsm",
"CrashService.jsm",
]
XPCOM_MANIFESTS += [
"components.conf",
]
TESTING_JS_MODULES += [
"CrashManagerTest.jsm",
]
XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell/xpcshell.ini"]
with Files("**"):
BUG_COMPONENT = ("Toolkit", "Crash Reporting")