Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(296)

Unified Diff: components/browser_watcher/BUILD.gn

Issue 2867063002: Stability instrumentation Crashpad integration (Closed)
Patch Set: Moar comments and fixups Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/browser_watcher/BUILD.gn
diff --git a/components/browser_watcher/BUILD.gn b/components/browser_watcher/BUILD.gn
index b1d4a41c783d6229dea9f1f534fe460dd7110720..533833cb09b54a39973ae737e4a3392bef78f478 100644
--- a/components/browser_watcher/BUILD.gn
+++ b/components/browser_watcher/BUILD.gn
@@ -66,8 +66,28 @@ if (is_win) {
ldflags = [ "/DELAYLOAD:wevtapi.dll" ] # Only used after unclean shutdowns.
}
+ static_library("crash_stability") {
+ sources = [
+ "stability_report_user_stream_data_source.cc",
+ "stability_report_user_stream_data_source.h",
+ ]
+ deps = [
+ ":stability_client",
+ ":stability_common",
+ ":stability_report_proto",
+ "//base",
+ "//chrome/install_static:install_static_util",
+ "//third_party/crashpad/crashpad/client",
+ "//third_party/crashpad/crashpad/compat",
+ "//third_party/crashpad/crashpad/handler:handler_lib",
+ "//third_party/crashpad/crashpad/minidump",
+ "//third_party/crashpad/crashpad/snapshot",
+ ]
+ }
+
static_library("stability_common") {
sources = [
+ "minidump_user_streams.h",
"stability_report_extractor.cc",
"stability_report_extractor.h",
]

Powered by Google App Engine
This is Rietveld 408576698