mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-09 21:00:42 +02:00
The minidump-analyzer tool was originally conceived to be used from the crash report client and as such was installed in the crash reporter client application bundle on macOS. It was later adapted to work from Firefox itself but this caused linking problems when invoked from the Firefox app bundle. This patch moves the minidump-analyzer into the Firefox app bundle and adapts the relevant code to find it there. The minidump-analyzer was also not signed like the rest of our executables and this patch addresses that issue too. Differential Revision: https://phabricator.services.mozilla.com/D52910 --HG-- extra : moz-landing-system : lando
21 lines
396 B
Text
21 lines
396 B
Text
# Specifies files that should be copied (preserving symlinks) from dist/bin
|
|
# to the .app/Contents/MacOS directory.
|
|
/*.app/***
|
|
/certutil
|
|
/firefox-bin
|
|
#if defined(MOZ_GECKODRIVER)
|
|
/geckodriver
|
|
#endif
|
|
/gtest/***
|
|
#if defined(MOZ_ASAN) || defined(MOZ_TSAN)
|
|
/llvm-symbolizer
|
|
#endif
|
|
#if defined(MOZ_CRASHREPORTER)
|
|
/minidump-analyzer
|
|
#endif
|
|
/pingsender
|
|
/pk12util
|
|
/ssltunnel
|
|
/webrtc-gtest
|
|
/xpcshell
|
|
/XUL
|