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

Unified Diff: components/browser_watcher/BUILD.gn

Issue 2867063002: Stability instrumentation Crashpad integration (Closed)
Patch Set: clang compile 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 483a3bfce6e5e8526cf7b5d345dd38a9f2ccd2dc..a45c0c83a1bbe20129f164ae38db891281e6e5e6 100644
--- a/components/browser_watcher/BUILD.gn
+++ b/components/browser_watcher/BUILD.gn
@@ -66,8 +66,27 @@ 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",
+ "//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