xref: /aosp_15_r20/external/cronet/testing/merge_scripts/perf_results.py (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
1#!/usr/bin/env python
2# Copyright 2019 The Chromium Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6import os
7import sys
8
9SRC_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(
10  __file__))))
11sys.path.append(os.path.join(SRC_DIR, 'tools', 'perf'))
12
13import process_perf_results
14
15if __name__ == '__main__':
16  sys.exit(process_perf_results.main())
17