| 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 1593 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1604 'cros_x86': ['defaulttests'], | 1604 'cros_x86': ['defaulttests'], |
| 1605 'ios_dbg_simulator': [ | 1605 'ios_dbg_simulator': [ |
| 1606 'compile', | 1606 'compile', |
| 1607 'base_unittests', | 1607 'base_unittests', |
| 1608 'content_unittests', | 1608 'content_unittests', |
| 1609 'crypto_unittests', | 1609 'crypto_unittests', |
| 1610 'url_unittests', | 1610 'url_unittests', |
| 1611 'net_unittests', | 1611 'net_unittests', |
| 1612 'sql_unittests', | 1612 'sql_unittests', |
| 1613 'ui_base_unittests', | 1613 'ui_base_unittests', |
| 1614 'ui_unittests', | |
| 1615 ], | 1614 ], |
| 1616 'ios_rel_device': ['compile'], | 1615 'ios_rel_device': ['compile'], |
| 1617 'ios_rel_device_ninja': ['compile'], | 1616 'ios_rel_device_ninja': ['compile'], |
| 1618 'mac_asan': ['compile'], | 1617 'mac_asan': ['compile'], |
| 1619 #TODO(stip): Change the name of this builder to reflect that it's release. | 1618 #TODO(stip): Change the name of this builder to reflect that it's release. |
| 1620 'linux_gtk': standard_tests, | 1619 'linux_gtk': standard_tests, |
| 1621 'linux_chromeos_asan': ['compile'], | 1620 'linux_chromeos_asan': ['compile'], |
| 1622 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], | 1621 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], |
| 1623 'linux_chromium_chromeos_rel': ['defaulttests'], | 1622 'linux_chromium_chromeos_rel': ['defaulttests'], |
| 1624 'linux_chromium_compile_dbg': ['defaulttests'], | 1623 'linux_chromium_compile_dbg': ['defaulttests'], |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1747 builders.extend(['cros_x86']) | 1746 builders.extend(['cros_x86']) |
| 1748 | 1747 |
| 1749 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it | 1748 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it |
| 1750 # unless they're .gyp(i) files as changes to those files can break the gyp | 1749 # unless they're .gyp(i) files as changes to those files can break the gyp |
| 1751 # step on that bot. | 1750 # step on that bot. |
| 1752 if (not all(re.search('^chrome', f) for f in files) or | 1751 if (not all(re.search('^chrome', f) for f in files) or |
| 1753 any(re.search('\.gypi?$', f) for f in files)): | 1752 any(re.search('\.gypi?$', f) for f in files)): |
| 1754 builders.extend(['android_aosp']) | 1753 builders.extend(['android_aosp']) |
| 1755 | 1754 |
| 1756 return GetDefaultTryConfigs(builders) | 1755 return GetDefaultTryConfigs(builders) |
| OLD | NEW |