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.
4
5#ifndef BASE_TEST_TEST_SWITCHES_H_
6#define BASE_TEST_TEST_SWITCHES_H_
7
8namespace switches {
9
10// All switches in alphabetical order. The switches should be documented
11// alongside the definition of their values in the .cc file.
12extern const char kTestLauncherBatchLimit[];
13extern const char kTestLauncherBotMode[];
14extern const char kTestLauncherDebugLauncher[];
15extern const char kTestLauncherFilterFile[];
16extern const char kTestLauncherJobs[];
17extern const char kTestLauncherOutput[];
18extern const char kTestLauncherRetryLimit[];
19extern const char kTestLauncherSummaryOutput[];
20extern const char kTestLauncherPrintTestStdio[];
21extern const char kTestLauncherShardIndex[];
22extern const char kTestLauncherTotalShards[];
23extern const char kTestLauncherTimeout[];
24extern const char kTestTinyTimeout[];
25extern const char kUiTestActionTimeout[];
26extern const char kUiTestActionMaxTimeout[];
27
28}  // namespace switches
29
30#endif  // BASE_TEST_TEST_SWITCHES_H_
31