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

Side by Side Diff: projects.py

Issue 25393002: Add blink_platform_unittests to CQ. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/commit-queue@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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 """Define the supported projects.""" 4 """Define the supported projects."""
5 5
6 import json 6 import json
7 import logging 7 import logging
8 import os 8 import os
9 import re 9 import re
10 import sys 10 import sys
(...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 [re.escape(user)]), 174 [re.escape(user)]),
175 ] 175 ]
176 verifiers = [] 176 verifiers = []
177 prereq_builder = 'blink_presubmit' 177 prereq_builder = 'blink_presubmit'
178 prereq_tests = ['presubmit'] 178 prereq_tests = ['presubmit']
179 step_verifiers = [ 179 step_verifiers = [
180 try_job_steps.TryJobSteps(builder_name=prereq_builder, 180 try_job_steps.TryJobSteps(builder_name=prereq_builder,
181 steps=prereq_tests)] 181 steps=prereq_tests)]
182 if not no_try: 182 if not no_try:
183 blink_tests = [ 183 blink_tests = [
184 'blink_platform_unittests',
184 'webkit_lint', 185 'webkit_lint',
185 'webkit_python_tests', 186 'webkit_python_tests',
186 'webkit_tests', 187 'webkit_tests',
187 'webkit_unit_tests', 188 'webkit_unit_tests',
188 'weborigin_unittests', 189 'weborigin_unittests',
189 'wtf_unittests', 190 'wtf_unittests',
190 ] 191 ]
191 192
192 # A "compile-only" bot runs the webkit_lint tests (which are fast) 193 # A "compile-only" bot runs the webkit_lint tests (which are fast)
193 # in order to pick up the default build targets. We don't use the 194 # in order to pick up the default build targets. We don't use the
(...skipping 536 matching lines...) Expand 10 before | Expand all | Expand 10 after
730 """List the projects that can be managed by the commit queue.""" 731 """List the projects that can be managed by the commit queue."""
731 return sorted( 732 return sorted(
732 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) 733 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_'))
733 734
734 735
735 def load_project(project, user, root_dir, rietveld_obj, no_try): 736 def load_project(project, user, root_dir, rietveld_obj, no_try):
736 """Loads the specified project.""" 737 """Loads the specified project."""
737 assert os.path.isabs(root_dir) 738 assert os.path.isabs(root_dir)
738 return getattr(sys.modules[__name__], '_gen_' + project)( 739 return getattr(sys.modules[__name__], '_gen_' + project)(
739 user, root_dir, rietveld_obj, no_try) 740 user, root_dir, rietveld_obj, no_try)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698