diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /toolkit/crashreporter/client/moz.build | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'toolkit/crashreporter/client/moz.build')
-rw-r--r-- | toolkit/crashreporter/client/moz.build | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/toolkit/crashreporter/client/moz.build b/toolkit/crashreporter/client/moz.build new file mode 100644 index 0000000000..cf8c28cfd8 --- /dev/null +++ b/toolkit/crashreporter/client/moz.build @@ -0,0 +1,103 @@ +# -*- 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/. + +if CONFIG["OS_TARGET"] != "Android": + Program("crashreporter") + + UNIFIED_SOURCES += [ + "../CrashAnnotations.cpp", + "crashreporter.cpp", + "ping.cpp", + ] + + LOCAL_INCLUDES += [ + "/toolkit/components/jsoncpp/include", + ] + + USE_LIBS += [ + "jsoncpp", + ] + +if CONFIG["OS_ARCH"] == "WINNT": + UNIFIED_SOURCES += [ + "crashreporter_win.cpp", + ] + include("/toolkit/crashreporter/google-breakpad/src/common/windows/objs.mozbuild") + include("/toolkit/crashreporter/breakpad-client/windows/sender/objs.mozbuild") + include( + "/toolkit/crashreporter/breakpad-client/windows/crash_generation/objs.mozbuild" + ) + include("/toolkit/crashreporter/breakpad-client/windows/common/objs.mozbuild") + SOURCES += objs_common + SOURCES += objs_sender + SOURCES += objs_crash_generation + SOURCES += objs_client_common + SOURCES += [ + "../google-breakpad/src/common/windows/http_upload.cc", + ] + DEFINES["UNICODE"] = True + DEFINES["_UNICODE"] = True + USE_LIBS += [ + "nss", + ] + OS_LIBS += [ + "comctl32", + "ole32", + "shell32", + "wininet", + "shlwapi", + ] +elif CONFIG["OS_ARCH"] == "Darwin": + UNIFIED_SOURCES += [ + "crashreporter_osx.mm", + "crashreporter_unix_common.cpp", + ] + LOCAL_INCLUDES += [ + "../google-breakpad/src/common/mac", + ] + OS_LIBS += ["-framework Cocoa"] + USE_LIBS += [ + "breakpad_common_s", + "breakpad_mac_common_s", + "nss", + ] +elif CONFIG["OS_ARCH"] == "SunOS": + SOURCES += [ + "crashreporter_linux.cpp", + "crashreporter_unix.cpp", + ] + USE_LIBS += [ + "breakpad_solaris_common_s", + ] + +if CONFIG["MOZ_WIDGET_TOOLKIT"] == "gtk": + UNIFIED_SOURCES += [ + "crashreporter_gtk_common.cpp", + "crashreporter_linux.cpp", + "crashreporter_unix_common.cpp", + ] + USE_LIBS += [ + "breakpad_linux_common_s", + ] + OS_LIBS += CONFIG["TK_LIBS"] + OS_LIBS += CONFIG["MOZ_GTHREAD_LIBS"] + CXXFLAGS += CONFIG["TK_CFLAGS"] + CXXFLAGS += CONFIG["MOZ_GTHREAD_CFLAGS"] + +if CONFIG["OS_ARCH"] == "Linux" or CONFIG["OS_ARCH"] == "SunOS": + FINAL_TARGET_FILES += [ + "Throbber-small.gif", + ] + +DEFINES["BIN_SUFFIX"] = '"%s"' % CONFIG["BIN_SUFFIX"] + +RCINCLUDE = "crashreporter.rc" + +# Don't use the STL wrappers in the crashreporter clients; they don't +# link with -lmozalloc, and it really doesn't matter here anyway. +DisableStlWrapping() + +include("/toolkit/crashreporter/crashreporter.mozbuild") |