| 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 339 'linux_chromeos_clang': ['compile'], | 339 'linux_chromeos_clang': ['compile'], |
| 340 # Note: It is a Release builder even if its name convey otherwise. | 340 # Note: It is a Release builder even if its name convey otherwise. |
| 341 'linux_chromeos': standard_tests + [ | 341 'linux_chromeos': standard_tests + [ |
| 342 'app_list_unittests', | 342 'app_list_unittests', |
| 343 'aura_unittests', | 343 'aura_unittests', |
| 344 'ash_unittests', | 344 'ash_unittests', |
| 345 'chromeos_unittests', | 345 'chromeos_unittests', |
| 346 'components_unittests', | 346 'components_unittests', |
| 347 'dbus_unittests', | 347 'dbus_unittests', |
| 348 'device_unittests', | 348 'device_unittests', |
| 349 'google_apis_unittests', |
| 349 'sandbox_linux_unittests', | 350 'sandbox_linux_unittests', |
| 350 ], | 351 ], |
| 351 'linux_rel': standard_tests + [ | 352 'linux_rel': standard_tests + [ |
| 352 'cc_unittests', | 353 'cc_unittests', |
| 353 'chromedriver2_unittests', | 354 'chromedriver2_unittests', |
| 354 'components_unittests', | 355 'components_unittests', |
| 356 'google_apis_unittests', |
| 355 'nacl_integration', | 357 'nacl_integration', |
| 356 'remoting_unittests', | 358 'remoting_unittests', |
| 357 'sandbox_linux_unittests', | 359 'sandbox_linux_unittests', |
| 358 'sync_integration_tests', | 360 'sync_integration_tests', |
| 359 ], | 361 ], |
| 360 'mac': ['compile'], | 362 'mac': ['compile'], |
| 361 'mac_rel': standard_tests + [ | 363 'mac_rel': standard_tests + [ |
| 362 'app_list_unittests', | 364 'app_list_unittests', |
| 363 'cc_unittests', | 365 'cc_unittests', |
| 364 'chromedriver2_unittests', | 366 'chromedriver2_unittests', |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 """List the projects that can be managed by the commit queue.""" | 739 """List the projects that can be managed by the commit queue.""" |
| 738 return sorted( | 740 return sorted( |
| 739 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) | 741 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) |
| 740 | 742 |
| 741 | 743 |
| 742 def load_project(project, user, root_dir, rietveld_obj, no_try): | 744 def load_project(project, user, root_dir, rietveld_obj, no_try): |
| 743 """Loads the specified project.""" | 745 """Loads the specified project.""" |
| 744 assert os.path.isabs(root_dir) | 746 assert os.path.isabs(root_dir) |
| 745 return getattr(sys.modules[__name__], '_gen_' + project)( | 747 return getattr(sys.modules[__name__], '_gen_' + project)( |
| 746 user, root_dir, rietveld_obj, no_try) | 748 user, root_dir, rietveld_obj, no_try) |
| OLD | NEW |