| 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 | 4 |
| 5 """Top-level presubmit script for Chromium. | 5 """Top-level presubmit script for Chromium. |
| 6 | 6 |
| 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts | 7 See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts |
| 8 for more details about the presubmit API built into gcl. | 8 for more details about the presubmit API built into gcl. |
| 9 """ | 9 """ |
| 10 | 10 |
| (...skipping 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1506 'android_dbg_tests_recipe': ['slave_steps'], | 1506 'android_dbg_tests_recipe': ['slave_steps'], |
| 1507 'cros_x86': ['defaulttests'], | 1507 'cros_x86': ['defaulttests'], |
| 1508 'ios_dbg_simulator': [ | 1508 'ios_dbg_simulator': [ |
| 1509 'compile', | 1509 'compile', |
| 1510 'base_unittests', | 1510 'base_unittests', |
| 1511 'content_unittests', | 1511 'content_unittests', |
| 1512 'crypto_unittests', | 1512 'crypto_unittests', |
| 1513 'url_unittests', | 1513 'url_unittests', |
| 1514 'net_unittests', | 1514 'net_unittests', |
| 1515 'sql_unittests', | 1515 'sql_unittests', |
| 1516 'ui_base_unittests', |
| 1516 'ui_unittests', | 1517 'ui_unittests', |
| 1517 ], | 1518 ], |
| 1518 'ios_rel_device': ['compile'], | 1519 'ios_rel_device': ['compile'], |
| 1519 'ios_rel_device_ninja': ['compile'], | 1520 'ios_rel_device_ninja': ['compile'], |
| 1520 'linux_asan': ['compile'], | 1521 'linux_asan': ['compile'], |
| 1521 'mac_asan': ['compile'], | 1522 'mac_asan': ['compile'], |
| 1522 #TODO(stip): Change the name of this builder to reflect that it's release. | 1523 #TODO(stip): Change the name of this builder to reflect that it's release. |
| 1523 'linux_gtk': standard_tests, | 1524 'linux_gtk': standard_tests, |
| 1524 'linux_chromeos_asan': ['compile'], | 1525 'linux_chromeos_asan': ['compile'], |
| 1525 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], | 1526 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1647 builders.extend(['cros_x86']) | 1648 builders.extend(['cros_x86']) |
| 1648 | 1649 |
| 1649 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it | 1650 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it |
| 1650 # unless they're .gyp(i) files as changes to those files can break the gyp | 1651 # unless they're .gyp(i) files as changes to those files can break the gyp |
| 1651 # step on that bot. | 1652 # step on that bot. |
| 1652 if (not all(re.search('^chrome', f) for f in files) or | 1653 if (not all(re.search('^chrome', f) for f in files) or |
| 1653 any(re.search('\.gypi?$', f) for f in files)): | 1654 any(re.search('\.gypi?$', f) for f in files)): |
| 1654 builders.extend(['android_aosp']) | 1655 builders.extend(['android_aosp']) |
| 1655 | 1656 |
| 1656 return GetDefaultTryConfigs(builders) | 1657 return GetDefaultTryConfigs(builders) |
| OLD | NEW |