Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 380 'ash_unittests', | 380 'ash_unittests', |
| 381 'aura_unittests', | 381 'aura_unittests', |
| 382 'cc_unittests', | 382 'cc_unittests', |
| 383 'chrome_frame_net_tests', | 383 'chrome_frame_net_tests', |
| 384 'chrome_frame_tests', | 384 'chrome_frame_tests', |
| 385 'chrome_frame_unittests', | 385 'chrome_frame_unittests', |
| 386 'chromedriver2_unittests', | 386 'chromedriver2_unittests', |
| 387 'components_unittests', | 387 'components_unittests', |
| 388 'compositor_unittests', | 388 'compositor_unittests', |
| 389 'events_unittests', | 389 'events_unittests', |
| 390 'google_apis_unittests', | |
|
ghost stip (do not use)
2013/12/02 23:15:56
I don't see this on the win_rel trybots, could you
tfarina
2013/12/03 21:59:29
Done.
| |
| 390 'installer_util_unittests', | 391 'installer_util_unittests', |
| 391 'mini_installer_test', | 392 'mini_installer_test', |
| 392 # http://crbug.com/319558 | 393 # http://crbug.com/319558 |
| 393 #'nacl_integration', | 394 #'nacl_integration', |
| 394 'remoting_unittests', | 395 'remoting_unittests', |
| 395 'sync_integration_tests', | 396 'sync_integration_tests', |
| 396 'telemetry_unittests', | 397 'telemetry_unittests', |
| 397 'views_unittests', | 398 'views_unittests', |
| 398 ], | 399 ], |
| 399 'win_x64_rel': [ | 400 'win_x64_rel': [ |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 743 """List the projects that can be managed by the commit queue.""" | 744 """List the projects that can be managed by the commit queue.""" |
| 744 return sorted( | 745 return sorted( |
| 745 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) | 746 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) |
| 746 | 747 |
| 747 | 748 |
| 748 def load_project(project, user, root_dir, rietveld_obj, no_try): | 749 def load_project(project, user, root_dir, rietveld_obj, no_try): |
| 749 """Loads the specified project.""" | 750 """Loads the specified project.""" |
| 750 assert os.path.isabs(root_dir) | 751 assert os.path.isabs(root_dir) |
| 751 return getattr(sys.modules[__name__], '_gen_' + project)( | 752 return getattr(sys.modules[__name__], '_gen_' + project)( |
| 752 user, root_dir, rietveld_obj, no_try) | 753 user, root_dir, rietveld_obj, no_try) |
| OLD | NEW |