Fix FullScreen crash in Webapp
[platform/framework/web/chromium-efl.git] / testing / merge_scripts / perf_results.py
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
6 import os
7 import sys
8
9 SRC_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(
10   __file__))))
11 sys.path.append(os.path.join(SRC_DIR, 'tools', 'perf'))
12
13 import process_perf_results
14
15 if __name__ == '__main__':
16   sys.exit(process_perf_results.main())