diff options
author | primiano <primiano@chromium.org> | 2015-02-09 10:59:50 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-09 19:00:54 +0000 |
commit | 2d3f4b2a13d7a9cf0dc2a3cffed9b29f441858eb (patch) | |
tree | e30e501cd14145478dcda158e2f0381cb5a5daeb /android_webview/crash_reporter/DEPS | |
parent | 93ae819382c85b70a511fac5831a1cdeb233d22d (diff) | |
download | chromium_src-2d3f4b2a13d7a9cf0dc2a3cffed9b29f441858eb.zip chromium_src-2d3f4b2a13d7a9cf0dc2a3cffed9b29f441858eb.tar.gz chromium_src-2d3f4b2a13d7a9cf0dc2a3cffed9b29f441858eb.tar.bz2 |
[android-webview] Enable breakpad microdump crash reporting
This CL:
- Pulls in the dependencies required to build breakpad and the
crash component.
- Introduces a crash reporter for WebView which unconditionally
enables microdumps (but not minidump uploads).
- Introduces a fallback no-op implementation which avoids the burden
of importing and supporting breakpad in the internal Android builds
(which are going to be deprecated soon).
Impact of this change on the WebView APK size:
Before the change: 25700337 bytes
After the change: 25720974 bytes
Delta: 20637 bytes
Impact of this change on the uncompressed libwebviewchromium.so lib:
Before the change: 28547980 bytes
After the change: 28576844 bytes
Delta: 28864 bytes
BUG=410294, 456494
TBR=mark@chromium.org
Review URL: https://codereview.chromium.org/902093003
Cr-Commit-Position: refs/heads/master@{#315357}
Diffstat (limited to 'android_webview/crash_reporter/DEPS')
-rw-r--r-- | android_webview/crash_reporter/DEPS | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/android_webview/crash_reporter/DEPS b/android_webview/crash_reporter/DEPS new file mode 100644 index 0000000..99162b4 --- /dev/null +++ b/android_webview/crash_reporter/DEPS @@ -0,0 +1,3 @@ +include_rules = [ + "+components/crash", +] |