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

Side by Side Diff: scripts/master/factory/chromium_factory.py

Issue 11784010: Use image_decoding_benchmark.json for image_decoding_benchmark pageset (Closed) Base URL: http://src.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 7 years, 11 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
« 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 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Utility class to build the chromium master BuildFactory's. 5 """Utility class to build the chromium master BuildFactory's.
6 6
7 Based on gclient_factory.py and adds chromium-specific steps.""" 7 Based on gclient_factory.py and adds chromium-specific steps."""
8 8
9 import os 9 import os
10 import re 10 import re
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
535 if R('memory'): 535 if R('memory'):
536 f.AddMemoryTests(fp) 536 f.AddMemoryTests(fp)
537 if R('tab_switching'): 537 if R('tab_switching'):
538 f.AddTabSwitchingTests(fp) 538 f.AddTabSwitchingTests(fp)
539 if R('sunspider'): 539 if R('sunspider'):
540 f.AddTelemetryTest('sunspider', 'sunspider.json', factory_properties=fp) 540 f.AddTelemetryTest('sunspider', 'sunspider.json', factory_properties=fp)
541 if R('octane'): 541 if R('octane'):
542 f.AddTelemetryTest('octane', 'octane.json', factory_properties=fp) 542 f.AddTelemetryTest('octane', 'octane.json', factory_properties=fp)
543 if R('image_decoding_benchmark'): 543 if R('image_decoding_benchmark'):
544 f.AddTelemetryTest( 544 f.AddTelemetryTest(
545 'image_decoding_benchmark', 'tough_image_cases.json', 545 'image_decoding_benchmark', 'image_decoding_benchmark.json',
546 factory_properties=fp) 546 factory_properties=fp)
547 if R('dromaeo'): 547 if R('dromaeo'):
548 f.AddTelemetryTest('dromaeo', 'dromaeo/domcoreattr.json', 548 f.AddTelemetryTest('dromaeo', 'dromaeo/domcoreattr.json',
549 step_name='dromaeo_domcoreattr', factory_properties=fp) 549 step_name='dromaeo_domcoreattr', factory_properties=fp)
550 f.AddTelemetryTest('dromaeo', 'dromaeo/domcoremodify.json', 550 f.AddTelemetryTest('dromaeo', 'dromaeo/domcoremodify.json',
551 step_name='dromaeo_domcoremodify', 551 step_name='dromaeo_domcoremodify',
552 factory_properties=fp) 552 factory_properties=fp)
553 f.AddTelemetryTest('dromaeo', 'dromaeo/domcorequery.json', 553 f.AddTelemetryTest('dromaeo', 'dromaeo/domcorequery.json',
554 step_name='dromaeo_domcorequery', 554 step_name='dromaeo_domcorequery',
555 factory_properties=fp) 555 factory_properties=fp)
(...skipping 744 matching lines...) Expand 10 before | Expand all | Expand 10 after
1300 build_dir=web_build_dir) 1300 build_dir=web_build_dir)
1301 chromium_cmd_obj.AddChromebotServer(factory_properties) 1301 chromium_cmd_obj.AddChromebotServer(factory_properties)
1302 chromium_cmd_obj.AddReliabilityTests(client_os) 1302 chromium_cmd_obj.AddReliabilityTests(client_os)
1303 elif slave_type == 'ChromebotClient': 1303 elif slave_type == 'ChromebotClient':
1304 chromium_cmd_obj.AddGetBuildForChromebot(client_os, 1304 chromium_cmd_obj.AddGetBuildForChromebot(client_os,
1305 extract=True, 1305 extract=True,
1306 build_url=build_url) 1306 build_url=build_url)
1307 chromium_cmd_obj.AddChromebotClient(factory_properties) 1307 chromium_cmd_obj.AddChromebotClient(factory_properties)
1308 1308
1309 return factory 1309 return factory
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