According to the breakpad documentation there's a tool to convert the minidumps to a human readable format:
[quote]
The client is a library that you include in your application. It can write minidump files capturing the current threads' state and the identities of the currently loaded executable and shared libraries. You can configure the client to write a minidump when a crash occurs, or when explicitly requested.
The symbol dumper is a program that reads the debugging information produced by the compiler and produces a symbol file, in Breakpad's own format.
The processor is a program that reads a minidump file, finds the appropriate symbol files for the versions of the executables and shared libraries the minidump mentions, and produces a human-readable C/C++ stack trace.
[/quote]
From
https://github.com/google/breakpad/blob/master/docs/getting_started_with_breakpad.mdI suggest you try to use this processor tool to get the information you need.