| 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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 # of this step as a try job failure. | 321 # of this step as a try job failure. |
| 322 'android_dbg': ['slave_steps'], | 322 'android_dbg': ['slave_steps'], |
| 323 'android_clang_dbg': ['slave_steps'], | 323 'android_clang_dbg': ['slave_steps'], |
| 324 'android_aosp': ['compile'], | 324 'android_aosp': ['compile'], |
| 325 'ios_dbg_simulator': [ | 325 'ios_dbg_simulator': [ |
| 326 'compile', | 326 'compile', |
| 327 'base_unittests', | 327 'base_unittests', |
| 328 'content_unittests', | 328 'content_unittests', |
| 329 'crypto_unittests', | 329 'crypto_unittests', |
| 330 'url_unittests', | 330 'url_unittests', |
| 331 'media_unittests', | |
| 332 'net_unittests', | 331 'net_unittests', |
| 333 'sql_unittests', | 332 'sql_unittests', |
| 334 'ui_unittests', | 333 'ui_unittests', |
| 335 ], | 334 ], |
| 336 'ios_rel_device': ['compile'], | 335 'ios_rel_device': ['compile'], |
| 337 'linux_aura': linux_aura_tests, | 336 'linux_aura': linux_aura_tests, |
| 338 'linux_clang': ['compile'], | 337 'linux_clang': ['compile'], |
| 339 'linux_chromeos_clang': ['compile'], | 338 'linux_chromeos_clang': ['compile'], |
| 340 # Note: It is a Release builder even if its name convey otherwise. | 339 # Note: It is a Release builder even if its name convey otherwise. |
| 341 'linux_chromeos': standard_tests + [ | 340 'linux_chromeos': standard_tests + [ |
| (...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 """List the projects that can be managed by the commit queue.""" | 735 """List the projects that can be managed by the commit queue.""" |
| 737 return sorted( | 736 return sorted( |
| 738 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) | 737 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) |
| 739 | 738 |
| 740 | 739 |
| 741 def load_project(project, user, root_dir, rietveld_obj, no_try): | 740 def load_project(project, user, root_dir, rietveld_obj, no_try): |
| 742 """Loads the specified project.""" | 741 """Loads the specified project.""" |
| 743 assert os.path.isabs(root_dir) | 742 assert os.path.isabs(root_dir) |
| 744 return getattr(sys.modules[__name__], '_gen_' + project)( | 743 return getattr(sys.modules[__name__], '_gen_' + project)( |
| 745 user, root_dir, rietveld_obj, no_try) | 744 user, root_dir, rietveld_obj, no_try) |
| OLD | NEW |