blob: 93ef9a80d2ea40916e109f176ac0e27346b727f2 [file]
#!/usr/bin/env python
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
""" Run the Skia render_pdfs executable. """
from build_step import BuildStep
import sys
class RenderPdfs(BuildStep):
def _Run(self):
self._flavor_utils.RunFlavoredCmd('render_pdfs',
[self._device_dirs.SKPDir()])
if '__main__' == __name__:
sys.exit(BuildStep.RunBuildStep(RenderPdfs))