summaryrefslogtreecommitdiffstats
path: root/toolkit/components/backgroundhangmonitor/moz.build
blob: 78cc8065b618c189aca3cd6e1bb3707184334208 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# -*- 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/.

# NOTE: These config options must match the ones in both android/'s and
# browser/'s package-manifest.in.

# BHR disabled outside of Nightly builds due to expected high ping frequency.
# BHR disabled for Release builds because of bug 965392.
# BHR disabled for debug builds because of bug 979069.
# BHR disabled for TSan builds because of bug 1121216.
# BHR disabled for ASan builds because of bug 1445441.
# When changing these conditions, please also change the matching conditions in
# tools/profiler/public/ProfilerLabels.h and xpcom/threads/moz.build.
if (
    CONFIG["NIGHTLY_BUILD"]
    and not CONFIG["MOZ_DEBUG"]
    and not CONFIG["MOZ_TSAN"]
    and not CONFIG["MOZ_ASAN"]
):
    DEFINES["MOZ_ENABLE_BACKGROUND_HANG_MONITOR"] = 1

    EXTRA_JS_MODULES += [
        "BHRTelemetryService.sys.mjs",
    ]

    XPCOM_MANIFESTS += [
        "components.conf",
    ]

    XPCSHELL_TESTS_MANIFESTS += ["tests/xpcshell.toml"]

XPIDL_SOURCES += [
    "nsIHangDetails.idl",
]

XPIDL_MODULE = "backgroundhangmonitor"

EXPORTS.mozilla += [
    "BackgroundHangMonitor.h",
    "HangAnnotations.h",
    "HangDetails.h",
]

UNIFIED_SOURCES += [
    "BackgroundHangMonitor.cpp",
    "HangAnnotations.cpp",
    "HangDetails.cpp",
]

IPDL_SOURCES += [
    "HangTypes.ipdlh",
]

if CONFIG["MOZ_GECKO_PROFILER"]:
    UNIFIED_SOURCES += [
        "ThreadStackHelper.cpp",
    ]

LOCAL_INCLUDES += [
    "/caps",  # For nsScriptSecurityManager.h
]

FINAL_LIBRARY = "xul"

include("/ipc/chromium/chromium-config.mozbuild")