| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2013 The Chromium Authors. All rights reserved. | 2 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import sys | 6 import sys |
| 7 | 7 |
| 8 from core import path_util | 8 from core import path_util |
| 9 sys.path.append(path_util.GetTelemetryDir()) | 9 sys.path.insert(1, path_util.GetTelemetryDir()) |
| 10 | 10 |
| 11 from telemetry import benchmark_runner | 11 from telemetry import benchmark_runner |
| 12 | 12 |
| 13 from chrome_telemetry_build import chromium_config | 13 from chrome_telemetry_build import chromium_config |
| 14 | 14 |
| 15 def main(): | 15 def main(): |
| 16 config = chromium_config.ChromiumConfig() | 16 config = chromium_config.ChromiumConfig() |
| 17 return benchmark_runner.main(config) | 17 return benchmark_runner.main(config) |
| 18 | 18 |
| 19 if __name__ == '__main__': | 19 if __name__ == '__main__': |
| 20 sys.exit(main()) | 20 sys.exit(main()) |
| OLD | NEW |