File: moz.build

package info (click to toggle)
firefox 147.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,683,484 kB
  • sloc: cpp: 7,607,246; javascript: 6,533,185; ansic: 3,775,227; python: 1,415,393; xml: 634,561; asm: 438,951; java: 186,241; sh: 62,752; makefile: 18,079; objc: 13,092; perl: 12,808; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10; exp: 6
file content (122 lines) | stat: -rw-r--r-- 3,881 bytes parent folder | download
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# -*- 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/.

Program("logalloc-replay")

SOURCES += [
    "/mfbt/Assertions.cpp",
    "/mfbt/Poison.cpp",
    "/mfbt/RandomNum.cpp",
    "/mfbt/RefCounted.cpp",
    "/mfbt/TaggedAnonymousMemory.cpp",
    "/mozglue/misc/StackWalk.cpp",
    "Replay.cpp",
]

if CONFIG["OS_TARGET"] == "WINNT":
    SOURCES += [
        "/mozglue/misc/ProcessType.cpp",
    ]

if CONFIG["OS_TARGET"] == "Linux":
    LDFLAGS += ["-static-libstdc++"]

if CONFIG["OS_TARGET"] == "Darwin":
    # Work around "warning: 'aligned_alloc' is only available on macOS 10.15 or newer"
    # when building with MACOSX_DEPLOYMENT_TARGET < 10.15 with >= 10.15 SDK.
    # We have our own definition of the function, so it doesn't matter what the SDK says.
    SOURCES["Replay.cpp"].flags += ["-Wno-unguarded-availability-new"]
elif CONFIG["OS_TARGET"] == "Android":
    # Work around "warning: 'aligned_alloc' is only available on Android 27 or
    # lower. We have our own definition of the function, so it doesn't matter.
    SOURCES["Replay.cpp"].flags += ["-Wno-unguarded-availability"]


if CONFIG["MOZ_REPLACE_MALLOC_STATIC"] and (CONFIG["MOZ_DMD"] or CONFIG["MOZ_PHC"]):
    UNIFIED_SOURCES += [
        "/mfbt/HashFunctions.cpp",
    ]

if CONFIG["OS_ARCH"] == "WINNT":
    OS_LIBS += [
        "advapi32",
        "dbghelp",
    ]

if CONFIG["MOZ_LINKER"] and CONFIG["MOZ_WIDGET_TOOLKIT"] == "android":
    LOCAL_INCLUDES += [
        "/mozglue/linker",
    ]
    DEFINES["__wrap_dladdr"] = "dladdr"


if CONFIG["MOZ_BUILD_APP"] == "memory":
    EXPORTS.mozilla += [
        "/mozglue/misc/StackWalk.h",
    ]

if CONFIG["MOZ_BUILD_APP"] == "memory" or CONFIG["MOZ_REPLACE_MALLOC_STATIC"]:
    UNIFIED_SOURCES += [
        "/mfbt/double-conversion/double-conversion/bignum-dtoa.cc",
        "/mfbt/double-conversion/double-conversion/bignum.cc",
        "/mfbt/double-conversion/double-conversion/cached-powers.cc",
        "/mfbt/double-conversion/double-conversion/double-to-string.cc",
        "/mfbt/double-conversion/double-conversion/fast-dtoa.cc",
        "/mfbt/double-conversion/double-conversion/fixed-dtoa.cc",
        "/mfbt/double-conversion/double-conversion/string-to-double.cc",
        "/mfbt/double-conversion/double-conversion/strtod.cc",
        "/mozglue/misc/Printf.cpp",
    ]

LOCAL_INCLUDES += [
    "/memory/build",
]

# Link replace-malloc and the default allocator.
USE_LIBS += [
    "memory",
]

# The memory library defines this, so it's needed here too.
DEFINES["IMPL_MFBT"] = True

DEFINES["MOZ_SUPPORT_LEAKCHECKING"] = True

OS_LIBS += CONFIG["LIBATOMIC_LIBS"]

OS_LIBS += CONFIG["DL_LIBS"]

DisableStlWrapping()

include("/mozglue/build/replace_malloc.mozbuild")
include("/mozglue/misc/timestamp.mozbuild")


if not CONFIG["MOZ_CODE_COVERAGE"] and not CONFIG["CROSS_COMPILE"]:
    if not CONFIG["MOZ_REPLACE_MALLOC_STATIC"]:
        if CONFIG["OS_TARGET"] == "WINNT":
            logalloc_var = "MOZ_REPLACE_MALLOC_LIB"
        elif CONFIG["OS_TARGET"] == "Darwin":
            logalloc_var = "DYLD_INSERT_LIBRARIES"
        else:
            logalloc_var = "LD_PRELOAD"
        logalloc = f"--logalloc={logalloc_var}={OBJDIR}/../{CONFIG['DLL_PREFIX']}logalloc{CONFIG['DLL_SUFFIX']}"
    else:
        logalloc = "--logalloc="

    LegacyTest(
        "test_logalloc.sh",
        logalloc,
        f"!/{FINAL_TARGET}/{PROGRAM}{CONFIG['BIN_SUFFIX']}",
        ".",
        f"%{CONFIG['PYTHON3']}",
        depends=[
            f"!/{FINAL_TARGET}/{PROGRAM}{CONFIG['BIN_SUFFIX']}",
            "logalloc_munge.py",
            "expected_output_minimal.log",
            "replay.log",
        ],
    )