Avi Drissman | d387f092 | 2022-09-14 20:51:31 | [diff] [blame] | 1 | // Copyright 2020 The Chromium Authors |
Ken Rockot | bf283d5 | 2020-06-10 19:13:28 | [diff] [blame] | 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 MOJO_CORE_MOJO_CORE_UNITTEST_H_ |
| 6 | #define MOJO_CORE_MOJO_CORE_UNITTEST_H_ |
| 7 | |
| 8 | namespace 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. |
| 13 | extern 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. |
| 17 | extern const char kMojoUseExplicitLibraryPath[]; |
| 18 | |
| 19 | } // namespace switches |
| 20 | |
| 21 | #endif // MOJO_CORE_MOJO_CORE_UNITTEST_H_ |