Make render_pdfs not crash webpages_playback script

The render_pdfs nowadays seems to input the skps from
the dir passed as '-r' parameter.

The app will not output anything, but it will not crash the
webpages_playback script either. Affects only runs that have
--skia_tools=<dir> argument.

Review URL: https://codereview.chromium.org/776873004
This commit is contained in:
kkinnunen 2014-12-03 04:22:06 -08:00 committed by Commit bot
parent 4b203c6222
commit 3a6aa86978

View File

@ -295,7 +295,7 @@ class SkPicturePlayback(object):
]
render_pdfs_cmd = [
os.path.join(self._skia_tools, 'render_pdfs'),
self._local_skp_dir
'-r', self._local_skp_dir
]
for tools_cmd in (render_pictures_cmd, render_pdfs_cmd):