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

Unified Diff: third_party/kasko/kasko.gni

Issue 1844023002: Capture a report on failed browser rendez-vous. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix gn variables. Created 4 years, 8 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: third_party/kasko/kasko.gni
diff --git a/third_party/kasko/kasko.gni b/third_party/kasko/kasko.gni
new file mode 100644
index 0000000000000000000000000000000000000000..897eea89fe478d9c4a4a96d181544f0723405fd4
--- /dev/null
+++ b/third_party/kasko/kasko.gni
@@ -0,0 +1,17 @@
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//build/config/sanitizers/sanitizers.gni")
+
+declare_args() {
+ # Enable the reporting of browser hangs with Kasko.
+ enable_kasko_hang_reports = false
+
+ # Enable the reporting of failed browser rendez-vous with Kasko.
+ enable_kasko_failed_rdv_reports = false
+}
+
+# Enable the Kasko crash reporter. Enabled by default on syzyasan build.
+enable_kasko =
+ is_syzyasan || enable_kasko_hang_reports || enable_kasko_failed_rdv_reports

Powered by Google App Engine
This is Rietveld 408576698