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

Side by Side Diff: projects.py

Issue 73403004: Remove nacl_integration_tests from win_rel. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/commit-queue.git@master
Patch Set: Created 7 years, 1 month 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 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
377 'aura_unittests', 377 'aura_unittests',
378 'cc_unittests', 378 'cc_unittests',
379 'chrome_frame_net_tests', 379 'chrome_frame_net_tests',
380 'chrome_frame_tests', 380 'chrome_frame_tests',
381 'chrome_frame_unittests', 381 'chrome_frame_unittests',
382 'chromedriver2_unittests', 382 'chromedriver2_unittests',
383 'components_unittests', 383 'components_unittests',
384 'compositor_unittests', 384 'compositor_unittests',
385 'installer_util_unittests', 385 'installer_util_unittests',
386 'mini_installer_test', 386 'mini_installer_test',
387 'nacl_integration', 387 # http://crbug.com/319558
388 #'nacl_integration',
388 'remoting_unittests', 389 'remoting_unittests',
389 'sync_integration_tests', 390 'sync_integration_tests',
390 'telemetry_unittests', 391 'telemetry_unittests',
391 'views_unittests', 392 'views_unittests',
392 ], 393 ],
393 'win_x64_rel': [ 394 'win_x64_rel': [
394 'base_unittests', 395 'base_unittests',
395 ], 396 ],
396 } 397 }
397 398
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 """List the projects that can be managed by the commit queue.""" 738 """List the projects that can be managed by the commit queue."""
738 return sorted( 739 return sorted(
739 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) 740 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_'))
740 741
741 742
742 def load_project(project, user, root_dir, rietveld_obj, no_try): 743 def load_project(project, user, root_dir, rietveld_obj, no_try):
743 """Loads the specified project.""" 744 """Loads the specified project."""
744 assert os.path.isabs(root_dir) 745 assert os.path.isabs(root_dir)
745 return getattr(sys.modules[__name__], '_gen_' + project)( 746 return getattr(sys.modules[__name__], '_gen_' + project)(
746 user, root_dir, rietveld_obj, no_try) 747 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