Mirko Bonadei | 054ea47 | 2022-07-21 07:52:32 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2022 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | #ifndef TEST_TEST_FLAGS_H_ |
| 11 | #define TEST_TEST_FLAGS_H_ |
| 12 | |
| 13 | #include <string> |
| 14 | #include <vector> |
| 15 | |
| 16 | #include "absl/flags/declare.h" |
| 17 | |
| 18 | ABSL_DECLARE_FLAG(std::string, force_fieldtrials); |
| 19 | ABSL_DECLARE_FLAG(std::vector<std::string>, plot); |
| 20 | ABSL_DECLARE_FLAG(std::string, isolated_script_test_perf_output); |
Artem Titov | 9a92b8a | 2022-09-30 12:20:44 | [diff] [blame] | 21 | ABSL_DECLARE_FLAG(std::string, webrtc_test_metrics_output_path); |
Mirko Bonadei | b4f87e5 | 2022-11-29 14:57:48 | [diff] [blame] | 22 | ABSL_DECLARE_FLAG(bool, export_perf_results_new_api); |
Mirko Bonadei | 054ea47 | 2022-07-21 07:52:32 | [diff] [blame] | 23 | |
| 24 | #endif // TEST_TEST_FLAGS_H_ |