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

Side by Side Diff: components/browser_watcher/BUILD.gn

Issue 2722223002: Separate collection logic from the extraction of the report (Closed)
Patch Set: Address Siggi's comments Created 3 years, 9 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 unified diff | Download patch
« no previous file with comments | « no previous file | components/browser_watcher/postmortem_report_collector.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 if (is_win) { 7 if (is_win) {
8 proto_library("stability_report_proto") { 8 proto_library("stability_report_proto") {
9 sources = [ 9 sources = [
10 "stability_report.proto", 10 "stability_report.proto",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "//third_party/crashpad/crashpad/client", 56 "//third_party/crashpad/crashpad/client",
57 "//third_party/crashpad/crashpad/minidump", 57 "//third_party/crashpad/crashpad/minidump",
58 "//third_party/crashpad/crashpad/util", 58 "//third_party/crashpad/crashpad/util",
59 ] 59 ]
60 } 60 }
61 61
62 static_library("postmortem_report_collector") { 62 static_library("postmortem_report_collector") {
63 sources = [ 63 sources = [
64 "postmortem_report_collector.cc", 64 "postmortem_report_collector.cc",
65 "postmortem_report_collector.h", 65 "postmortem_report_collector.h",
66 "postmortem_report_extractor.cc",
67 "postmortem_report_extractor.h",
66 ] 68 ]
67 deps = [ 69 deps = [
68 ":postmortem_minidump_writer", 70 ":postmortem_minidump_writer",
69 ":stability_data", 71 ":stability_data",
70 ":stability_report_proto", 72 ":stability_report_proto",
71 "//base", 73 "//base",
72 "//components/variations", 74 "//components/variations",
73 "//third_party/crashpad/crashpad/client", 75 "//third_party/crashpad/crashpad/client",
74 "//third_party/crashpad/crashpad/util", 76 "//third_party/crashpad/crashpad/util",
75 ] 77 ]
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 executable("dump_postmortem") { 134 executable("dump_postmortem") {
133 sources = [ 135 sources = [
134 "dump_postmortem_minidump_main_win.cc", 136 "dump_postmortem_minidump_main_win.cc",
135 ] 137 ]
136 deps = [ 138 deps = [
137 ":stability_report_proto", 139 ":stability_report_proto",
138 "//base", 140 "//base",
139 ] 141 ]
140 } 142 }
141 } 143 }
OLDNEW
« no previous file with comments | « no previous file | components/browser_watcher/postmortem_report_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698