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", |
] |