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 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1594 'content_unittests', | 1594 'content_unittests', |
1595 'crypto_unittests', | 1595 'crypto_unittests', |
1596 'url_unittests', | 1596 'url_unittests', |
1597 'net_unittests', | 1597 'net_unittests', |
1598 'sql_unittests', | 1598 'sql_unittests', |
1599 'ui_base_unittests', | 1599 'ui_base_unittests', |
1600 'ui_unittests', | 1600 'ui_unittests', |
1601 ], | 1601 ], |
1602 'ios_rel_device': ['compile'], | 1602 'ios_rel_device': ['compile'], |
1603 'ios_rel_device_ninja': ['compile'], | 1603 'ios_rel_device_ninja': ['compile'], |
1604 'linux_asan': ['compile'], | |
1605 'mac_asan': ['compile'], | 1604 'mac_asan': ['compile'], |
1606 #TODO(stip): Change the name of this builder to reflect that it's release. | 1605 #TODO(stip): Change the name of this builder to reflect that it's release. |
1607 'linux_gtk': standard_tests, | 1606 'linux_gtk': standard_tests, |
1608 'linux_chromeos_asan': ['compile'], | 1607 'linux_chromeos_asan': ['compile'], |
1609 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], | 1608 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], |
1610 'linux_chromium_chromeos_rel_swarming': ['defaulttests'], | 1609 'linux_chromium_chromeos_rel_swarming': ['defaulttests'], |
1611 'linux_chromium_compile_dbg': ['defaulttests'], | 1610 'linux_chromium_compile_dbg': ['defaulttests'], |
1612 'linux_chromium_gn_dbg': ['compile'], | 1611 'linux_chromium_gn_dbg': ['compile'], |
1613 'linux_chromium_gn_rel': ['defaulttests'], | 1612 'linux_chromium_gn_rel': ['defaulttests'], |
1614 'linux_chromium_rel_swarming': ['defaulttests'], | 1613 'linux_chromium_rel_swarming': ['defaulttests'], |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1732 builders.extend(['cros_x86']) | 1731 builders.extend(['cros_x86']) |
1733 | 1732 |
1734 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it | 1733 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it |
1735 # unless they're .gyp(i) files as changes to those files can break the gyp | 1734 # unless they're .gyp(i) files as changes to those files can break the gyp |
1736 # step on that bot. | 1735 # step on that bot. |
1737 if (not all(re.search('^chrome', f) for f in files) or | 1736 if (not all(re.search('^chrome', f) for f in files) or |
1738 any(re.search('\.gypi?$', f) for f in files)): | 1737 any(re.search('\.gypi?$', f) for f in files)): |
1739 builders.extend(['android_aosp']) | 1738 builders.extend(['android_aosp']) |
1740 | 1739 |
1741 return GetDefaultTryConfigs(builders) | 1740 return GetDefaultTryConfigs(builders) |
OLD | NEW |