OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 import os | |
6 import sys | 5 import sys |
7 | 6 |
8 import perf_tools.skpicture_printer | 7 import perf_tools.multipage_benchmark_runner |
9 | 8 |
10 if __name__ == '__main__': | 9 if __name__ == '__main__': |
11 sys.exit(perf_tools.skpicture_printer.Main()) | 10 sys.exit(perf_tools.multipage_benchmark_runner.Main()) |
OLD | NEW |