1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/base_switches.h"
9 // If the program includes base/debug/debug_on_start_win.h, the process will
10 // (on Windows only) start the JIT system-registered debugger on itself and
11 // will wait for 60 seconds for the debugger to attach to itself. Then a break
13 const char kDebugOnStart
[] = "debug-on-start";
15 // Disables the crash reporting.
16 const char kDisableBreakpad
[] = "disable-breakpad";
18 // Indicates that crash reporting should be enabled. On platforms where helper
19 // processes cannot access to files needed to make this decision, this flag is
20 // generated internally.
21 const char kEnableCrashReporter
[] = "enable-crash-reporter";
23 // Enable DCHECKs in release mode.
24 const char kEnableDCHECK
[] = "enable-dcheck";
26 // Generates full memory crash dump.
27 const char kFullMemoryCrashReport
[] = "full-memory-crash-report";
29 // Suppresses all error dialogs when present.
30 const char kNoErrorDialogs
[] = "noerrdialogs";
32 // When running certain tests that spawn child processes, this switch indicates
33 // to the test framework that the current process is a child process.
34 const char kTestChildProcess
[] = "test-child-process";
36 // Gives the default maximal active V-logging level; 0 is the default.
37 // Normally positive values are used for V-logging levels.
38 const char kV
[] = "v";
40 // Gives the per-module maximal V-logging levels to override the value
41 // given by --v. E.g. "my_module=2,foo*=3" would change the logging
42 // level for all code in source files "my_module.*" and "foo*.*"
43 // ("-inl" suffixes are also disregarded for this matching).
45 // Any pattern containing a forward or backward slash will be tested
46 // against the whole pathname and not just the module. E.g.,
47 // "*/foo/bar/*=2" would change the logging level for all code in
48 // source files under a "foo/bar" directory.
49 const char kVModule
[] = "vmodule";
51 // Will wait for 60 seconds for a debugger to come to attach to the process.
52 const char kWaitForDebugger
[] = "wait-for-debugger";
54 // Sends a pretty-printed version of tracing info to the console.
55 const char kTraceToConsole
[] = "trace-to-console";
58 // Used for turning on Breakpad crash reporting in a debug environment where
59 // crash reporting is typically compiled but disabled.
60 const char kEnableCrashReporterForTesting
[] =
61 "enable-crash-reporter-for-testing";
64 } // namespace switches