blob: 04ee41b0a0c383c109fd4898c80fc822f891137e [file] [log] [blame]
Avi Drissmand387f0922022-09-14 20:51:311// Copyright 2020 The Chromium Authors
Ken Rockotbf283d52020-06-10 19:13:282// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef MOJO_CORE_MOJO_CORE_UNITTEST_H_
6#define MOJO_CORE_MOJO_CORE_UNITTEST_H_
7
8namespace switches {
9
10// Instructs the test runner to initialize the Mojo Core library in separate
11// phases. Used by a unit test when launching a subprocess, to verify the
12// correctness of phased initialization.
13extern const char kMojoLoadBeforeInit[];
14
15// Instructs the test runner to provide an explicit path to the Mojo Core shared
16// library, rather than assuming it's present in the current working directory.
17extern const char kMojoUseExplicitLibraryPath[];
18
19} // namespace switches
20
21#endif // MOJO_CORE_MOJO_CORE_UNITTEST_H_