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 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 10 matching lines...) Expand all Loading... | |
| 375 'app_list_unittests', | 377 'app_list_unittests', |
| 376 'ash_unittests', | 378 'ash_unittests', |
| 377 'aura_unittests', | 379 'aura_unittests', |
| 378 'cc_unittests', | 380 'cc_unittests', |
| 379 'chrome_frame_net_tests', | 381 'chrome_frame_net_tests', |
| 380 'chrome_frame_tests', | 382 'chrome_frame_tests', |
| 381 'chrome_frame_unittests', | 383 'chrome_frame_unittests', |
| 382 'chromedriver2_unittests', | 384 'chromedriver2_unittests', |
| 383 'components_unittests', | 385 'components_unittests', |
| 384 'compositor_unittests', | 386 'compositor_unittests', |
| 387 'google_apis_unittests', | |
|
ghost stip (do not use)
2013/11/14 02:20:13
looks like google_apis_unittests isn't on the wind
tfarina
2013/11/14 02:26:22
Done.
| |
| 385 'installer_util_unittests', | 388 'installer_util_unittests', |
| 386 'mini_installer_test', | 389 'mini_installer_test', |
| 387 'nacl_integration', | 390 'nacl_integration', |
| 388 'remoting_unittests', | 391 'remoting_unittests', |
| 389 'sync_integration_tests', | 392 'sync_integration_tests', |
| 390 'telemetry_unittests', | 393 'telemetry_unittests', |
| 391 'views_unittests', | 394 'views_unittests', |
| 392 ], | 395 ], |
| 393 'win_x64_rel': [ | 396 'win_x64_rel': [ |
| 394 'base_unittests', | 397 'base_unittests', |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 737 """List the projects that can be managed by the commit queue.""" | 740 """List the projects that can be managed by the commit queue.""" |
| 738 return sorted( | 741 return sorted( |
| 739 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) | 742 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) |
| 740 | 743 |
| 741 | 744 |
| 742 def load_project(project, user, root_dir, rietveld_obj, no_try): | 745 def load_project(project, user, root_dir, rietveld_obj, no_try): |
| 743 """Loads the specified project.""" | 746 """Loads the specified project.""" |
| 744 assert os.path.isabs(root_dir) | 747 assert os.path.isabs(root_dir) |
| 745 return getattr(sys.modules[__name__], '_gen_' + project)( | 748 return getattr(sys.modules[__name__], '_gen_' + project)( |
| 746 user, root_dir, rietveld_obj, no_try) | 749 user, root_dir, rietveld_obj, no_try) |
| OLD | NEW |