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 render_pdfs executable. """ | 6 """ Run DecodingTests on an Android device. """ |
7 | 7 |
8 from android_build_step import AndroidBuildStep | 8 from android_build_step import AndroidBuildStep |
9 from build_step import BuildStep | 9 from build_step import BuildStep |
10 from render_pdfs import RenderPdfs | 10 from run_decoding_tests import RunDecodingTests |
11 import sys | 11 import sys |
12 | 12 |
13 | 13 |
14 class AndroidRenderPdfs(AndroidBuildStep, RenderPdfs): | 14 class AndroidRunDecodingTests(AndroidBuildStep, RunDecodingTests): |
15 pass | 15 pass |
16 | 16 |
17 | 17 |
18 if '__main__' == __name__: | 18 if '__main__' == __name__: |
19 sys.exit(BuildStep.RunBuildStep(AndroidRenderPdfs)) | 19 sys.exit(BuildStep.RunBuildStep(AndroidRunDecodingTests)) |
OLD | NEW |