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 1490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1501 'sql_unittests', | 1501 'sql_unittests', |
1502 'ui_unittests', | 1502 'ui_unittests', |
1503 ], | 1503 ], |
1504 'ios_rel_device': ['compile'], | 1504 'ios_rel_device': ['compile'], |
1505 'linux_asan': ['compile'], | 1505 'linux_asan': ['compile'], |
1506 'mac_asan': ['compile'], | 1506 'mac_asan': ['compile'], |
1507 #TODO(stip): Change the name of this builder to reflect that it's release. | 1507 #TODO(stip): Change the name of this builder to reflect that it's release. |
1508 'linux_gtk': standard_tests, | 1508 'linux_gtk': standard_tests, |
1509 'linux_chromeos_asan': ['compile'], | 1509 'linux_chromeos_asan': ['compile'], |
1510 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], | 1510 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], |
1511 'linux_chromium_chromeos_rel': ['defaulttests'], | 1511 'linux_chromium_chromeos_rel_swarming': ['defaulttests'], |
1512 'linux_chromium_compile_dbg': ['defaulttests'], | 1512 'linux_chromium_compile_dbg': ['defaulttests'], |
1513 'linux_chromium_gn_rel': ['defaulttests'], | 1513 'linux_chromium_gn_rel': ['defaulttests'], |
1514 'linux_chromium_rel_swarming': ['defaulttests'], | 1514 'linux_chromium_rel_swarming': ['defaulttests'], |
1515 'linux_chromium_clang_dbg': ['defaulttests'], | 1515 'linux_chromium_clang_dbg': ['defaulttests'], |
1516 'linux_gpu': ['defaulttests'], | 1516 'linux_gpu': ['defaulttests'], |
1517 'linux_nacl_sdk_build': ['compile'], | 1517 'linux_nacl_sdk_build': ['compile'], |
1518 'mac_chromium_compile_dbg': ['defaulttests'], | 1518 'mac_chromium_compile_dbg': ['defaulttests'], |
1519 'mac_chromium_rel': ['defaulttests'], | 1519 'mac_chromium_rel_swarming': ['defaulttests'], |
1520 'mac_gpu': ['defaulttests'], | 1520 'mac_gpu': ['defaulttests'], |
1521 'mac_nacl_sdk_build': ['compile'], | 1521 'mac_nacl_sdk_build': ['compile'], |
1522 'win_chromium_compile_dbg': ['defaulttests'], | 1522 'win_chromium_compile_dbg': ['defaulttests'], |
1523 'win_chromium_dbg': ['defaulttests'], | 1523 'win_chromium_dbg': ['defaulttests'], |
1524 'win_chromium_rel': ['defaulttests'], | 1524 'win_chromium_rel': ['defaulttests'], |
1525 'win_chromium_x64_rel': ['defaulttests'], | 1525 'win_chromium_x64_rel': ['defaulttests'], |
1526 'win_gpu': ['defaulttests'], | 1526 'win_gpu': ['defaulttests'], |
1527 'win_nacl_sdk_build': ['compile'], | 1527 'win_nacl_sdk_build': ['compile'], |
1528 } | 1528 } |
1529 | 1529 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1621 builders.extend(['cros_x86']) | 1621 builders.extend(['cros_x86']) |
1622 | 1622 |
1623 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it | 1623 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it |
1624 # unless they're .gyp(i) files as changes to those files can break the gyp | 1624 # unless they're .gyp(i) files as changes to those files can break the gyp |
1625 # step on that bot. | 1625 # step on that bot. |
1626 if (not all(re.search('^chrome', f) for f in files) or | 1626 if (not all(re.search('^chrome', f) for f in files) or |
1627 any(re.search('\.gypi?$', f) for f in files)): | 1627 any(re.search('\.gypi?$', f) for f in files)): |
1628 builders.extend(['android_aosp']) | 1628 builders.extend(['android_aosp']) |
1629 | 1629 |
1630 return GetDefaultTryConfigs(builders) | 1630 return GetDefaultTryConfigs(builders) |
OLD | NEW |