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

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

Issue 24918002: Converted the remaining GPU bots to recipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 7 years, 2 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
(Empty)
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
3 # found in the LICENSE file.
4
5 from master import master_config
6 from master.factory import chromium_factory
7
8 defaults = {}
9
10 helper = master_config.Helper(defaults)
11 B = helper.Builder
12 F = helper.Factory
13
14 def mac():
15 return chromium_factory.ChromiumFactory('src/out', 'darwin')
16
17
18 ################################################################################
19 ## Release
20 ################################################################################
21
22 defaults['category'] = 'gpu'
23
24 #
25 # GPU Mac Release
26 #
27 B('GPU Mac10.7', 'f_gpu_mac_rel', scheduler='global_scheduler')
28 F('f_gpu_mac_rel', mac().ChromiumFactory(
29 target='Release',
30 options=['--build-tool=ninja', '--compiler=goma-clang',
31 'chromium_gpu_builder'],
32 tests=[
33 'content_gl_tests',
34 'gles2_conform_test',
35 'gl_tests',
36 'gpu_content_tests',
37 'gpu_frame_rate',
38 'gpu_throughput',
39 'tab_capture_performance',
40 ],
41 factory_properties={
42 'generate_gtest_json': True,
43 'perf_id': 'gpu-webkit-mac',
44 'show_perf_results': True,
45 'gclient_env': {
46 'GYP_GENERATORS':'ninja',
47 'GYP_DEFINES':'fastbuild=1 internal_gles2_conform_tests=1',
48 },
49 'blink_config': 'blink',
50 }))
51
52 ################################################################################
53 ## Debug
54 ################################################################################
55
56 #
57 # GPU Mac Debug
58 #
59 B('GPU Mac10.7 (dbg)', 'f_gpu_mac_dbg', scheduler='global_scheduler')
60 F('f_gpu_mac_dbg', mac().ChromiumFactory(
61 target='Debug',
62 options=['--build-tool=ninja', '--compiler=goma-clang',
63 'chromium_gpu_debug_builder'],
64 tests=[
65 'content_gl_tests',
66 'gles2_conform_test',
67 'gl_tests',
68 'gpu_content_tests',
69 ],
70 factory_properties={
71 'generate_gtest_json': True,
72 'gclient_env': {
73 'GYP_GENERATORS':'ninja',
74 'GYP_DEFINES':'fastbuild=1 internal_gles2_conform_tests=1',
75 },
76 'blink_config': 'blink',
77 }))
78
79 def Update(_config, _active_master, c):
80 return helper.Update(c)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698