blob: 30f918fc7d3995040b6defacf523782fe3b0848e [file] [log] [blame]
Mirko Bonadei054ea472022-07-21 07:52:321/*
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
18ABSL_DECLARE_FLAG(std::string, force_fieldtrials);
19ABSL_DECLARE_FLAG(std::vector<std::string>, plot);
20ABSL_DECLARE_FLAG(std::string, isolated_script_test_perf_output);
Artem Titov9a92b8a2022-09-30 12:20:4421ABSL_DECLARE_FLAG(std::string, webrtc_test_metrics_output_path);
Mirko Bonadeib4f87e52022-11-29 14:57:4822ABSL_DECLARE_FLAG(bool, export_perf_results_new_api);
Mirko Bonadei054ea472022-07-21 07:52:3223
24#endif // TEST_TEST_FLAGS_H_