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

Unified Diff: tools/skp/recreate_skps.py

Issue 1111273003: Create SP enabled SKPs from only the top_25_smooth page set (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Remove key_mobile_sites 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 ad3b38e2bf8221408c3df0624d652b181143749b..7faccb7d741c7a838ae667364c245f49b2f4d8ef 100644
--- a/tools/skp/recreate_skps.py
+++ b/tools/skp/recreate_skps.py
@@ -64,10 +64,15 @@ def main(chrome_src_path, browser_executable):
try:
shell_utils.run(webpages_playback_cmd)
+
# Temporary change to enable Slimming Paint runs. See skia:3763.
+ chromium_page_sets_path = os.path.join(
+ chrome_src_path, 'tools', 'perf', 'page_sets')
webpages_playback_cmd.extend([
'--skp_prefix', 'sp_',
'--browser_extra_args', '--enable-slimming-paint',
+ '--page_sets', '%s' % (
+ os.path.join(chromium_page_sets_path, 'top_25_smooth.py'))
])
shell_utils.run(webpages_playback_cmd)
finally:
« 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