Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: tools/skp/recreate_skps.py

Issue 1065503007: Update RecreateSKPs bot to also generate Slimming Paint SKPs with a separate prefix (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Cleanup Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/skp/recreate_skps.py
diff --git a/tools/skp/recreate_skps.py b/tools/skp/recreate_skps.py
index a2c24df560b16a5e250a1bb6bb01535b9f5ef180..ad3b38e2bf8221408c3df0624d652b181143749b 100644
--- a/tools/skp/recreate_skps.py
+++ b/tools/skp/recreate_skps.py
@@ -64,6 +64,12 @@ def main(chrome_src_path, browser_executable):
try:
shell_utils.run(webpages_playback_cmd)
+ # Temporary change to enable Slimming Paint runs. See skia:3763.
+ webpages_playback_cmd.extend([
+ '--skp_prefix', 'sp_',
+ '--browser_extra_args', '--enable-slimming-paint',
+ ])
+ shell_utils.run(webpages_playback_cmd)
finally:
# Clean up any leftover browser instances. This can happen if there are
# telemetry crashes, processes are not always cleaned up appropriately by
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698