• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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(
10    os.path.dirname(os.path.dirname(os.path.abspath(__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