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

Side by Side Diff: gm/rebaseline_server/download_actuals.py

Issue 480153002: Added 'renderMode' and 'builder' as columns to the SKP front-end. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Addressing issues from CR Created 6 years, 4 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 unified diff | Download patch
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 """ 3 """
4 Copyright 2014 Google Inc. 4 Copyright 2014 Google Inc.
5 5
6 Use of this source code is governed by a BSD-style license that can be 6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file. 7 found in the LICENSE file.
8 8
9 Download actual GM results for a particular builder. 9 Download actual GM results for a particular builder.
10 """ 10 """
11 11
12 # System-level imports 12 # System-level imports
13 import optparse 13 import optparse
14 import os 14 import os
15 import posixpath 15 import posixpath
16 import re 16 import re
17 import urllib2 17 import urllib2
18 18
19 # Must fix up PYTHONPATH before importing from within Skia 19 # Must fix up PYTHONPATH before importing from within Skia
20 import fix_pythonpath # pylint: disable=W0611 20 import rs_fixpypath # pylint: disable=W0611
21 21
22 # Imports from within Skia 22 # Imports from within Skia
23 from py.utils import gs_utils 23 from py.utils import gs_utils
24 from py.utils import url_utils 24 from py.utils import url_utils
25 import buildbot_globals 25 import buildbot_globals
26 import gm_json 26 import gm_json
27 27
28 28
29 GM_SUMMARIES_BUCKET = buildbot_globals.Get('gm_summaries_bucket') 29 GM_SUMMARIES_BUCKET = buildbot_globals.Get('gm_summaries_bucket')
30 DEFAULT_ACTUALS_BASE_URL = ( 30 DEFAULT_ACTUALS_BASE_URL = (
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 remaining_args) 145 remaining_args)
146 146
147 downloader = Download(actuals_base_url=params.actuals_base_url) 147 downloader = Download(actuals_base_url=params.actuals_base_url)
148 downloader.fetch(builder_name=params.builder, 148 downloader.fetch(builder_name=params.builder,
149 dest_dir=params.dest_dir) 149 dest_dir=params.dest_dir)
150 150
151 151
152 152
153 if __name__ == '__main__': 153 if __name__ == '__main__':
154 main() 154 main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698