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

Unified Diff: scripts/slave/recipe_modules/gpu/common.py

Issue 1675443002: Delete the GPU recipe and code that only it depended on. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Addressed iannucci's review feedback. Created 4 years, 10 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
« no previous file with comments | « scripts/slave/recipe_modules/gpu/api.py ('k') | scripts/slave/recipe_modules/gpu/test_api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/gpu/common.py
diff --git a/scripts/slave/recipe_modules/gpu/common.py b/scripts/slave/recipe_modules/gpu/common.py
deleted file mode 100644
index 330e0a75178b1a9f5bb13d3862615cdccb59b89a..0000000000000000000000000000000000000000
--- a/scripts/slave/recipe_modules/gpu/common.py
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 2014 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.
-
-GPU_ISOLATES = (
- 'angle_unittests',
- 'content_gl_tests',
- 'gl_tests',
- 'gl_unittests',
- 'gpu_unittests',
- 'tab_capture_end2end_tests',
- 'telemetry_gpu_test',
-)
-
-# Until the media-only tests are extracted from content_unittests and
-# these both can be run on the commit queue with
-# --require-audio-hardware-for-testing, run them only on the FYI
-# waterfall.
-# TODO(jmadill): Run them on all GPU bots once stable
-FYI_ONLY_GPU_ISOLATES = (
- 'audio_unittests',
- 'content_unittests',
- # The gles2_conform_tests are closed-source and deliberately only run
- # on the FYI waterfall.
- 'gles2_conform_test',
-)
-
-# Until we have more capacity, run angle_end2end_tests only on the
-# FYI waterfall and the ANGLE_TRYBOTS
-ANGLE_TRYBOTS_GPU_ISOLATES = (
- 'angle_end2end_tests',
-)
-
-# Slower tests that we should only run on Release configurations
-# for the ANGLE try bots.
-# TODO(jmadill): Also Mac bots.
-WIN_LINUX_RELEASE_ANGLE_TRYBOTS_ISOLATES = (
- 'angle_deqp_gles2_tests',
-)
-
-FYI_GPU_ISOLATES = (
- FYI_ONLY_GPU_ISOLATES +
- ANGLE_TRYBOTS_GPU_ISOLATES
-)
-
-# This will be folded into the list above once ANGLE is running on all
-# platforms.
-WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES = (
- 'angle_deqp_gles2_tests',
-)
-
-WIN_ONLY_FYI_ONLY_GPU_ISOLATES = (
- 'angle_deqp_gles3_tests',
-)
-
-# A list of all the Linux FYI isolates for testing
-ALL_LINUX_FYI_GPU_ISOLATES = (
- GPU_ISOLATES +
- FYI_GPU_ISOLATES +
- WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES
-)
-
-# A list of all Windows FYI isolates for testing
-ALL_WIN_FYI_GPU_ISOLATES = (
- GPU_ISOLATES +
- FYI_GPU_ISOLATES +
- WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES +
- WIN_ONLY_FYI_ONLY_GPU_ISOLATES
-)
-
-# A list of all ANGLE trybot isolates for testing
-ALL_ANGLE_TRYBOT_GPU_ISOLATES = (
- GPU_ISOLATES +
- FYI_GPU_ISOLATES +
- WIN_AND_LINUX_ONLY_FYI_ONLY_GPU_ISOLATES
-)
« no previous file with comments | « scripts/slave/recipe_modules/gpu/api.py ('k') | scripts/slave/recipe_modules/gpu/test_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698