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

Side by Side Diff: masters/master.chromium.webkit/master_mac_gpu_latest_cfg.py

Issue 14440005: Rework how bots get the version of Blink. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: fix typo in devtools master.cfg Created 7 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 unified diff | Download patch | Annotate | Revision Log
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 from master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 13 matching lines...) Expand all
24 24
25 # 25 #
26 # Main release scheduler for webkit 26 # Main release scheduler for webkit
27 # 27 #
28 S('s9_gpu_mac_webkit_rel', branch='trunk', treeStableTimer=60) 28 S('s9_gpu_mac_webkit_rel', branch='trunk', treeStableTimer=60)
29 29
30 # 30 #
31 # GPU Mac Release 31 # GPU Mac Release
32 # 32 #
33 B('GPU Mac10.7', 'f_gpu_mac_rel', scheduler='s9_gpu_mac_webkit_rel') 33 B('GPU Mac10.7', 'f_gpu_mac_rel', scheduler='s9_gpu_mac_webkit_rel')
34 F('f_gpu_mac_rel', mac().ChromiumWebkitLatestFactory( 34 F('f_gpu_mac_rel', mac().ChromiumFactory(
35 target='Release', 35 target='Release',
36 options=['--build-tool=ninja', '--compiler=goma-clang', 36 options=['--build-tool=ninja', '--compiler=goma-clang',
37 'chromium_gpu_builder'], 37 'chromium_gpu_builder'],
38 tests=[ 38 tests=[
39 'gl_tests', 39 'gl_tests',
40 'gpu_frame_rate', 40 'gpu_frame_rate',
41 'gpu_latency', 41 'gpu_latency',
42 'gpu_throughput', 42 'gpu_throughput',
43 'gpu_tests', 43 'gpu_tests',
44 'gpu_content_tests', 44 'gpu_content_tests',
45 ], 45 ],
46 factory_properties={ 46 factory_properties={
47 'generate_gtest_json': True, 47 'generate_gtest_json': True,
48 'perf_id': 'gpu-webkit-mac', 48 'perf_id': 'gpu-webkit-mac',
49 'show_perf_results': True, 49 'show_perf_results': True,
50 'gclient_env': { 50 'gclient_env': {
51 'GYP_GENERATORS':'ninja', 51 'GYP_GENERATORS':'ninja',
52 'GYP_DEFINES':'fastbuild=1', 52 'GYP_DEFINES':'fastbuild=1',
53 }, 53 },
54 'blink_config': 'blink',
54 })) 55 }))
55 56
56 ################################################################################ 57 ################################################################################
57 ## Debug 58 ## Debug
58 ################################################################################ 59 ################################################################################
59 60
60 # 61 #
61 # Main debug scheduler for webkit 62 # Main debug scheduler for webkit
62 # 63 #
63 S('s9_gpu_mac_webkit_dbg', branch='trunk', treeStableTimer=60) 64 S('s9_gpu_mac_webkit_dbg', branch='trunk', treeStableTimer=60)
64 65
65 # 66 #
66 # GPU Mac Debug 67 # GPU Mac Debug
67 # 68 #
68 B('GPU Mac10.7 (dbg)', 'f_gpu_mac_dbg', scheduler='s9_gpu_mac_webkit_dbg') 69 B('GPU Mac10.7 (dbg)', 'f_gpu_mac_dbg', scheduler='s9_gpu_mac_webkit_dbg')
69 F('f_gpu_mac_dbg', mac().ChromiumWebkitLatestFactory( 70 F('f_gpu_mac_dbg', mac().ChromiumFactory(
70 target='Debug', 71 target='Debug',
71 options=['--build-tool=ninja', '--compiler=goma-clang', 72 options=['--build-tool=ninja', '--compiler=goma-clang',
72 'chromium_gpu_debug_builder'], 73 'chromium_gpu_debug_builder'],
73 tests=[ 74 tests=[
74 'gl_tests', 75 'gl_tests',
75 'gpu_tests', 76 'gpu_tests',
76 'gpu_content_tests', 77 'gpu_content_tests',
77 ], 78 ],
78 factory_properties={ 79 factory_properties={
79 'generate_gtest_json': True, 80 'generate_gtest_json': True,
80 'gclient_env': { 81 'gclient_env': {
81 'GYP_GENERATORS':'ninja', 82 'GYP_GENERATORS':'ninja',
82 'GYP_DEFINES':'fastbuild=1', 83 'GYP_DEFINES':'fastbuild=1',
83 }, 84 },
85 'blink_config': 'blink',
84 })) 86 }))
85 87
86 def Update(config, active_master, c): 88 def Update(config, active_master, c):
87 return helper.Update(c) 89 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698