mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-27 22:34:18 +01:00
upload_system_symbols: Make /System/Library/Components optional
Bug: 1400770 Change-Id: I81cb981bb9ca208ac2af9e27c00e75cab1c14717 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/4178413 Reviewed-by: Robert Sesek <rsesek@chromium.org>
This commit is contained in:
parent
bae7147e78
commit
934d6b2a5d
@ -69,7 +69,6 @@ var (
|
|||||||
var (
|
var (
|
||||||
// pathsToScan are the subpaths in the systemRoot that should be scanned for shared libraries.
|
// pathsToScan are the subpaths in the systemRoot that should be scanned for shared libraries.
|
||||||
pathsToScan = []string{
|
pathsToScan = []string{
|
||||||
"/System/Library/Components",
|
|
||||||
"/System/Library/Frameworks",
|
"/System/Library/Frameworks",
|
||||||
"/System/Library/PrivateFrameworks",
|
"/System/Library/PrivateFrameworks",
|
||||||
"/usr/lib",
|
"/usr/lib",
|
||||||
@ -79,6 +78,8 @@ var (
|
|||||||
optionalPathsToScan = []string{
|
optionalPathsToScan = []string{
|
||||||
// Gone in 10.15.
|
// Gone in 10.15.
|
||||||
"/Library/QuickTime",
|
"/Library/QuickTime",
|
||||||
|
// Not present in dumped dyld_shared_caches
|
||||||
|
"/System/Library/Components",
|
||||||
}
|
}
|
||||||
|
|
||||||
// uploadServersV1 are the list of servers to which symbols should be
|
// uploadServersV1 are the list of servers to which symbols should be
|
||||||
|
Loading…
Reference in New Issue
Block a user