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

Unified Diff: components/browser_watcher/BUILD.gn

Issue 2859223002: [TEST ONLY] Run tests for 2860863003 (Closed)
Patch Set: 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 ecb1d99567631d7b0e1b6aee0ad13c0c920dce4c..1db2f3fd02dc45e4b924154f889dd500fe35bdf8 100644
--- a/components/browser_watcher/BUILD.gn
+++ b/components/browser_watcher/BUILD.gn
@@ -35,27 +35,26 @@ if (is_win) {
"watcher_metrics_provider_win.h",
]
deps = [
- ":postmortem_report_collector",
- ":stability",
+ ":postmortem_stability",
+ ":stability_client",
"//base",
"//components/metrics",
"//third_party/crashpad/crashpad/client",
]
}
- static_library("postmortem_report_collector") {
+ static_library("postmortem_stability") {
sources = [
"postmortem_minidump_writer.h",
"postmortem_minidump_writer_win.cc",
"postmortem_report_collector.cc",
"postmortem_report_collector.h",
- "postmortem_report_extractor.cc",
- "postmortem_report_extractor.h",
"system_session_analyzer_win.cc",
"system_session_analyzer_win.h",
]
deps = [
- ":stability_data",
+ ":stability_client",
+ ":stability_common",
":stability_report_proto",
"//base",
"//components/variations",
@@ -66,24 +65,37 @@ if (is_win) {
libs = [ "wevtapi.lib" ]
ldflags = [ "/DELAYLOAD:wevtapi.dll" ] # Only used after unclean shutdowns.
}
+
+ static_library("stability_common") {
+ sources = [
+ "stability_report_extractor.cc",
+ "stability_report_extractor.h",
+ ]
+ deps = [
+ ":stability_client",
+ ":stability_report_proto",
+ "//base",
+ "//components/variations",
+ "//third_party/crashpad/crashpad/util",
+ ]
+ }
}
-static_library("stability") {
+static_library("stability_client") {
sources = [
"features.cc",
"features.h",
+ "stability_data_names.cc",
+ "stability_data_names.h",
"stability_debugging.cc",
"stability_debugging.h",
+ "stability_paths.cc",
+ "stability_paths.h",
]
deps = [
"//base",
- ]
-}
-
-static_library("stability_data") {
- sources = [
- "stability_data_names.cc",
- "stability_data_names.h",
+ "//third_party/crashpad/crashpad/compat",
+ "//third_party/crashpad/crashpad/util",
]
}
@@ -105,9 +117,9 @@ if (is_win) {
deps = [
":browser_watcher",
":browser_watcher_client",
- ":postmortem_report_collector",
- ":stability",
- ":stability_data",
+ ":postmortem_stability",
+ ":stability_client",
+ ":stability_common",
":stability_report_proto",
"//base",
"//base/test:test_support",
@@ -138,7 +150,7 @@ if (is_win) {
"fetch_system_session_events_main_win.cc",
]
deps = [
- ":postmortem_report_collector",
+ ":postmortem_stability",
"//base",
]
}
« no previous file with comments | « chrome/browser/metrics/chrome_metrics_service_client.cc ('k') | components/browser_watcher/postmortem_report_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698