OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 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 """ Run the Skia GM executable. """ | 6 """ Run the Skia skimage executable. """ |
7 | 7 |
8 from build_step import BuildStep | 8 from build_step import BuildStep |
9 from chromeos_build_step import ChromeOSBuildStep | 9 from chromeos_build_step import ChromeOSBuildStep |
10 from run_gm import RunGM | 10 from run_decoding_tests import RunDecodingTests |
11 import sys | 11 import sys |
12 | 12 |
13 | 13 |
14 class ChromeOSRunGM(ChromeOSBuildStep, RunGM): | 14 class ChromeOSRunDecodingTests(ChromeOSBuildStep, RunDecodingTests): |
15 pass | 15 pass |
16 | 16 |
17 | 17 |
18 if '__main__' == __name__: | 18 if '__main__' == __name__: |
19 sys.exit(BuildStep.RunBuildStep(ChromeOSRunGM)) | 19 sys.exit(BuildStep.RunBuildStep(ChromeOSRunDecodingTests)) |
OLD | NEW |