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 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1556 'android_dbg_tests_recipe': ['slave_steps'], | 1556 'android_dbg_tests_recipe': ['slave_steps'], |
1557 'cros_x86': ['defaulttests'], | 1557 'cros_x86': ['defaulttests'], |
1558 'ios_dbg_simulator': [ | 1558 'ios_dbg_simulator': [ |
1559 'compile', | 1559 'compile', |
1560 'base_unittests', | 1560 'base_unittests', |
1561 'content_unittests', | 1561 'content_unittests', |
1562 'crypto_unittests', | 1562 'crypto_unittests', |
1563 'url_unittests', | 1563 'url_unittests', |
1564 'net_unittests', | 1564 'net_unittests', |
1565 'sql_unittests', | 1565 'sql_unittests', |
| 1566 'ui_base_unittests', |
1566 'ui_unittests', | 1567 'ui_unittests', |
1567 ], | 1568 ], |
1568 'ios_rel_device': ['compile'], | 1569 'ios_rel_device': ['compile'], |
1569 'ios_rel_device_ninja': ['compile'], | 1570 'ios_rel_device_ninja': ['compile'], |
1570 'linux_asan': ['compile'], | 1571 'linux_asan': ['compile'], |
1571 'mac_asan': ['compile'], | 1572 'mac_asan': ['compile'], |
1572 #TODO(stip): Change the name of this builder to reflect that it's release. | 1573 #TODO(stip): Change the name of this builder to reflect that it's release. |
1573 'linux_gtk': standard_tests, | 1574 'linux_gtk': standard_tests, |
1574 'linux_chromeos_asan': ['compile'], | 1575 'linux_chromeos_asan': ['compile'], |
1575 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], | 1576 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1697 builders.extend(['cros_x86']) | 1698 builders.extend(['cros_x86']) |
1698 | 1699 |
1699 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it | 1700 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it |
1700 # unless they're .gyp(i) files as changes to those files can break the gyp | 1701 # unless they're .gyp(i) files as changes to those files can break the gyp |
1701 # step on that bot. | 1702 # step on that bot. |
1702 if (not all(re.search('^chrome', f) for f in files) or | 1703 if (not all(re.search('^chrome', f) for f in files) or |
1703 any(re.search('\.gypi?$', f) for f in files)): | 1704 any(re.search('\.gypi?$', f) for f in files)): |
1704 builders.extend(['android_aosp']) | 1705 builders.extend(['android_aosp']) |
1705 | 1706 |
1706 return GetDefaultTryConfigs(builders) | 1707 return GetDefaultTryConfigs(builders) |
OLD | NEW |