| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import os | 5 import os |
| 6 import re | |
| 7 import subprocess | |
| 8 import sys | |
| 9 | 6 |
| 10 from gpu_tests import path_util | 7 from gpu_tests import path_util |
| 11 | 8 |
| 12 path_util.AddDirToPathIfNeeded(path_util.GetChromiumSrcDir(), 'tools', 'perf') | 9 path_util.AddDirToPathIfNeeded(path_util.GetChromiumSrcDir(), 'tools', 'perf') |
| 13 | 10 |
| 14 from chrome_telemetry_build import chromium_config | 11 from chrome_telemetry_build import chromium_config |
| 15 | 12 |
| 16 CONFIG = chromium_config.ChromiumConfig( | 13 CONFIG = chromium_config.ChromiumConfig( |
| 17 top_level_dir=path_util.GetGpuTestDir(), | 14 top_level_dir=path_util.GetGpuTestDir(), |
| 18 benchmark_dirs=[os.path.join(path_util.GetGpuTestDir(), 'gpu_tests')]) | 15 benchmark_dirs=[os.path.join(path_util.GetGpuTestDir(), 'gpu_tests')]) |
| OLD | NEW |