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

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

Issue 2860863003: Rework GetStabilityFileForProcess for use by Crashpad integration (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 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 "features.h", 87 "features.h",
88 "stability_data_names.cc", 88 "stability_data_names.cc",
89 "stability_data_names.h", 89 "stability_data_names.h",
90 "stability_debugging.cc", 90 "stability_debugging.cc",
91 "stability_debugging.h", 91 "stability_debugging.h",
92 "stability_paths.cc", 92 "stability_paths.cc",
93 "stability_paths.h", 93 "stability_paths.h",
94 ] 94 ]
95 deps = [ 95 deps = [
96 "//base", 96 "//base",
97 "//third_party/crashpad/crashpad/compat",
Mark Mentovai 2017/05/04 16:47:10 Did you really need this? crashpad/util didn’t giv
manzagop (departed) 2017/05/04 19:52:41 Yup, otherwise I get "C1083: Cannot open include f
Mark Mentovai 2017/05/04 21:27:37 That’s never really the right solution (which is p
manzagop (departed) 2017/05/05 14:35:22 Ah nice! Removed here, below and in components/cra
98 "//third_party/crashpad/crashpad/util",
97 ] 99 ]
98 } 100 }
99 101
100 if (is_win) { 102 if (is_win) {
101 source_set("unit_tests") { 103 source_set("unit_tests") {
102 testonly = true 104 testonly = true
103 sources = [ 105 sources = [
104 "endsession_watcher_window_win_unittest.cc", 106 "endsession_watcher_window_win_unittest.cc",
105 "exit_code_watcher_win_unittest.cc", 107 "exit_code_watcher_win_unittest.cc",
106 "postmortem_minidump_writer_win_unittest.cc", 108 "postmortem_minidump_writer_win_unittest.cc",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 executable("fetch_system_session_events") { 148 executable("fetch_system_session_events") {
147 sources = [ 149 sources = [
148 "fetch_system_session_events_main_win.cc", 150 "fetch_system_session_events_main_win.cc",
149 ] 151 ]
150 deps = [ 152 deps = [
151 ":postmortem_stability", 153 ":postmortem_stability",
152 "//base", 154 "//base",
153 ] 155 ]
154 } 156 }
155 } 157 }
OLDNEW
« no previous file with comments | « no previous file | components/browser_watcher/stability_paths.h » ('j') | components/browser_watcher/stability_paths.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698