forked from crosswalk-project/crosswalk
-
Notifications
You must be signed in to change notification settings - Fork 1
Breakpad(crash reporter)
Mrunal Kapade edited this page Jul 17, 2013
·
5 revisions
Breakpad is an utility that allows you to distribute an application to users with compiler-provided debugging information removed, record crashes in compact "minidump" files, send them back to your server, and produce C and C++ stack traces from these minidumps. More info can be found here.
Since Crosswalk is using Google's content layer from Chromium it uses Breakpad for crash reporting purposes. By default it reports the crash reports to Google servers which neither we nor Google would ideally want. We would like to customize it so that it,
- Generates the crash report as per Crosswalk code and symbol information.
- Sends it to Crosswalk server.
TBD
TBD