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

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

Issue 2866163002: Update stability report dumper so it handles non-postmortem minidumps (Closed)
Patch Set: presubmit changes 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 unified diff | Download patch
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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 "//testing/gtest", 124 "//testing/gtest",
125 "//third_party/crashpad/crashpad/client", 125 "//third_party/crashpad/crashpad/client",
126 126
127 # TODO(manzagop): remove this lib once Crashpad writes the minidumps. 127 # TODO(manzagop): remove this lib once Crashpad writes the minidumps.
128 "//third_party/crashpad/crashpad/minidump", 128 "//third_party/crashpad/crashpad/minidump",
129 "//third_party/crashpad/crashpad/snapshot", 129 "//third_party/crashpad/crashpad/snapshot",
130 "//third_party/crashpad/crashpad/util", 130 "//third_party/crashpad/crashpad/util",
131 ] 131 ]
132 } 132 }
133 133
134 executable("dump_postmortem") { 134 executable("dump_stability") {
135 sources = [ 135 sources = [
136 "dump_postmortem_minidump_main_win.cc", 136 "dump_stability_report_main_win.cc",
137 ] 137 ]
138 deps = [ 138 deps = [
139 ":stability_report_proto", 139 ":stability_report_proto",
140 "//base", 140 "//base",
141 ] 141 ]
142 } 142 }
143 143
144 executable("fetch_system_session_events") { 144 executable("fetch_system_session_events") {
145 sources = [ 145 sources = [
146 "fetch_system_session_events_main_win.cc", 146 "fetch_system_session_events_main_win.cc",
147 ] 147 ]
148 deps = [ 148 deps = [
149 ":postmortem_stability", 149 ":postmortem_stability",
150 "//base", 150 "//base",
151 ] 151 ]
152 } 152 }
153 } 153 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698