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

Unified Diff: components/crash/content/app/BUILD.gn

Issue 2596463002: A simple, practically zero cost fallback crash handler for Crashpad handler process. (Closed)
Patch Set: On 64 bit systems, pointers are large - doofus. Created 3 years, 11 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
« no previous file with comments | « no previous file | components/crash/content/app/fallback_crash_handler_launcher_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/crash/content/app/BUILD.gn
diff --git a/components/crash/content/app/BUILD.gn b/components/crash/content/app/BUILD.gn
index 4bdcc707212ee9d13333fa796d2dac83eed4a352..7552646936c5e62055f5d7ea60375a565472f270 100644
--- a/components/crash/content/app/BUILD.gn
+++ b/components/crash/content/app/BUILD.gn
@@ -66,6 +66,8 @@ if (is_win) {
sources = [
"crash_switches.cc",
"crash_switches.h",
+ "fallback_crash_handler_launcher_win.cc",
+ "fallback_crash_handler_launcher_win.h",
"run_as_crashpad_handler_win.cc",
"run_as_crashpad_handler_win.h",
]
@@ -213,15 +215,20 @@ source_set("unit_tests") {
testonly = true
sources = [
"crash_keys_win_unittest.cc",
+ "fallback_crash_handler_launcher_win_unittest.cc",
]
deps = [
":lib",
"//base",
+ "//base/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
if (is_win) {
- deps += [ "//breakpad:client" ]
+ deps += [
+ ":run_as_crashpad_handler",
+ "//breakpad:client",
+ ]
}
}
« no previous file with comments | « no previous file | components/crash/content/app/fallback_crash_handler_launcher_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698