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

Side by Side Diff: tools/rebaseline.py

Issue 14743004: Make rebaseline.py pull GN Debug images. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/python
2 2
3 ''' 3 '''
4 Copyright 2012 Google Inc. 4 Copyright 2012 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 9
10 ''' 10 '''
(...skipping 11 matching lines...) Expand all
22 'Test-Win7-ShuttleA-HD2000-x86-Release-ANGLE'], 22 'Test-Win7-ShuttleA-HD2000-x86-Release-ANGLE'],
23 ['base-shuttle-win7-intel-directwrite', 23 ['base-shuttle-win7-intel-directwrite',
24 'Test-Win7-ShuttleA-HD2000-x86-Release-DirectWrite'], 24 'Test-Win7-ShuttleA-HD2000-x86-Release-DirectWrite'],
25 ['base-shuttle_ubuntu12_ati5770', 25 ['base-shuttle_ubuntu12_ati5770',
26 'Test-Ubuntu12-ShuttleA-ATI5770-x86_64-Release'], 26 'Test-Ubuntu12-ShuttleA-ATI5770-x86_64-Release'],
27 ['base-macmini', 27 ['base-macmini',
28 'Test-Mac10.6-MacMini4.1-GeForce320M-x86-Release'], 28 'Test-Mac10.6-MacMini4.1-GeForce320M-x86-Release'],
29 ['base-macmini-lion-float', 29 ['base-macmini-lion-float',
30 'Test-Mac10.7-MacMini4.1-GeForce320M-x86-Release'], 30 'Test-Mac10.7-MacMini4.1-GeForce320M-x86-Release'],
31 ['base-android-galaxy-nexus', 31 ['base-android-galaxy-nexus',
32 'Test-Android-GalaxyNexus-SGX540-Arm7-Release'], 32 'Test-Android-GalaxyNexus-SGX540-Arm7-Debug'],
33 ['base-android-nexus-7', 33 ['base-android-nexus-7',
34 'Test-Android-Nexus7-Tegra3-Arm7-Release'], 34 'Test-Android-Nexus7-Tegra3-Arm7-Release'],
35 ['base-android-nexus-s', 35 ['base-android-nexus-s',
36 'Test-Android-NexusS-SGX540-Arm7-Release'], 36 'Test-Android-NexusS-SGX540-Arm7-Release'],
37 ['base-android-xoom', 37 ['base-android-xoom',
38 'Test-Android-Xoom-Tegra2-Arm7-Release'], 38 'Test-Android-Xoom-Tegra2-Arm7-Release'],
39 ] 39 ]
40 40
41 if len(sys.argv) < 2: 41 if len(sys.argv) < 2:
42 print 'Usage: ' + os.path.basename(sys.argv[0]) + ' <testname> ' 42 print 'Usage: ' + os.path.basename(sys.argv[0]) + ' <testname> '
(...skipping 25 matching lines...) Expand all
68 cmd = [ 'cp', temp.name, outfilename ] 68 cmd = [ 'cp', temp.name, outfilename ]
69 subprocess.call(cmd); 69 subprocess.call(cmd);
70 if is_svn_checkout: 70 if is_svn_checkout:
71 cmd = [ 'svn', 'add', '--quiet', outfilename ] 71 cmd = [ 'svn', 'add', '--quiet', outfilename ]
72 subprocess.call(cmd) 72 subprocess.call(cmd)
73 cmd = [ 'svn', 'propset', '--quiet', 'svn:mime-type', 'image/png ', outfilename ]; 73 cmd = [ 'svn', 'propset', '--quiet', 'svn:mime-type', 'image/png ', outfilename ];
74 subprocess.call(cmd) 74 subprocess.call(cmd)
75 elif is_git_checkout: 75 elif is_git_checkout:
76 cmd = [ 'git', 'add', outfilename ] 76 cmd = [ 'git', 'add', outfilename ]
77 subprocess.call(cmd) 77 subprocess.call(cmd)
OLDNEW
« 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