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

Unified 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, 3 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 side-by-side diff with in-line comments
Download patch
Index: masters/master.chromium.webkit/master_mac_gpu_latest_cfg.py
diff --git a/masters/master.chromium.webkit/master_mac_gpu_latest_cfg.py b/masters/master.chromium.webkit/master_mac_gpu_latest_cfg.py
deleted file mode 100644
index 4885af4af7d0c462dadc9546cee719248635796d..0000000000000000000000000000000000000000
--- a/masters/master.chromium.webkit/master_mac_gpu_latest_cfg.py
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from master import master_config
-from master.factory import chromium_factory
-
-defaults = {}
-
-helper = master_config.Helper(defaults)
-B = helper.Builder
-F = helper.Factory
-
-def mac():
- return chromium_factory.ChromiumFactory('src/out', 'darwin')
-
-
-################################################################################
-## Release
-################################################################################
-
-defaults['category'] = 'gpu'
-
-#
-# GPU Mac Release
-#
-B('GPU Mac10.7', 'f_gpu_mac_rel', scheduler='global_scheduler')
-F('f_gpu_mac_rel', mac().ChromiumFactory(
- target='Release',
- options=['--build-tool=ninja', '--compiler=goma-clang',
- 'chromium_gpu_builder'],
- tests=[
- 'content_gl_tests',
- 'gles2_conform_test',
- 'gl_tests',
- 'gpu_content_tests',
- 'gpu_frame_rate',
- 'gpu_throughput',
- 'tab_capture_performance',
- ],
- factory_properties={
- 'generate_gtest_json': True,
- 'perf_id': 'gpu-webkit-mac',
- 'show_perf_results': True,
- 'gclient_env': {
- 'GYP_GENERATORS':'ninja',
- 'GYP_DEFINES':'fastbuild=1 internal_gles2_conform_tests=1',
- },
- 'blink_config': 'blink',
- }))
-
-################################################################################
-## Debug
-################################################################################
-
-#
-# GPU Mac Debug
-#
-B('GPU Mac10.7 (dbg)', 'f_gpu_mac_dbg', scheduler='global_scheduler')
-F('f_gpu_mac_dbg', mac().ChromiumFactory(
- target='Debug',
- options=['--build-tool=ninja', '--compiler=goma-clang',
- 'chromium_gpu_debug_builder'],
- tests=[
- 'content_gl_tests',
- 'gles2_conform_test',
- 'gl_tests',
- 'gpu_content_tests',
- ],
- factory_properties={
- 'generate_gtest_json': True,
- 'gclient_env': {
- 'GYP_GENERATORS':'ninja',
- 'GYP_DEFINES':'fastbuild=1 internal_gles2_conform_tests=1',
- },
- 'blink_config': 'blink',
- }))
-
-def Update(_config, _active_master, c):
- return helper.Update(c)

Powered by Google App Engine
This is Rietveld 408576698