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

Unified Diff: masters/master.chromium.webkit/master_linux_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_linux_gpu_latest_cfg.py
diff --git a/masters/master.chromium.webkit/master_linux_gpu_latest_cfg.py b/masters/master.chromium.webkit/master_linux_gpu_latest_cfg.py
deleted file mode 100644
index cfd07de847235d712688e81a79d024c0034783c6..0000000000000000000000000000000000000000
--- a/masters/master.chromium.webkit/master_linux_gpu_latest_cfg.py
+++ /dev/null
@@ -1,88 +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 linux():
- return chromium_factory.ChromiumFactory('src/out', 'linux2')
-
-
-################################################################################
-## Release
-################################################################################
-
-defaults['category'] = 'gpu'
-
-#
-# Linux Rel tests
-#
-
-B('GPU Linux (NVIDIA)', 'f_gpu_linux_rel', scheduler='global_scheduler')
-F('f_gpu_linux_rel', linux().ChromiumFactory(
- target='Release',
- tests=[
- 'content_gl_tests',
- 'gles2_conform_test',
- 'gl_tests',
- 'gpu_content_tests',
- 'gpu_frame_rate',
- 'gpu_throughput',
- 'tab_capture_performance',
- ],
- options=[
- '--build-tool=ninja',
- '--compiler=goma',
- '--',
- 'chromium_gpu_builder',
- ],
- factory_properties={
- 'generate_gtest_json': True,
- 'perf_id': 'gpu-webkit-linux-nvidia',
- 'show_perf_results': True,
- 'gclient_env': {
- 'GYP_GENERATORS': 'ninja',
- 'GYP_DEFINES': 'fastbuild=1 internal_gles2_conform_tests=1',
- },
- 'blink_config': 'blink',
- }))
-
-################################################################################
-## Debug
-################################################################################
-
-B('GPU Linux (dbg) (NVIDIA)', 'f_gpu_linux_dbg', scheduler='global_scheduler')
-F('f_gpu_linux_dbg', linux().ChromiumFactory(
- target='Debug',
- tests=[
- 'content_gl_tests',
- 'gles2_conform_test',
- 'gl_tests',
- 'gpu_content_tests',
- ],
- options=[
- '--build-tool=ninja',
- '--compiler=goma',
- '--',
- 'chromium_gpu_debug_builder'
- ],
- 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