Chromium Code Reviews| 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 1409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1420 'aura_unittests', | 1420 'aura_unittests', |
| 1421 'cc_unittests', | 1421 'cc_unittests', |
| 1422 'chrome_elf_unittests', | 1422 'chrome_elf_unittests', |
| 1423 'chromedriver_unittests', | 1423 'chromedriver_unittests', |
| 1424 'components_unittests', | 1424 'components_unittests', |
| 1425 'compositor_unittests', | 1425 'compositor_unittests', |
| 1426 'events_unittests', | 1426 'events_unittests', |
| 1427 'gfx_unittests', | 1427 'gfx_unittests', |
| 1428 'google_apis_unittests', | 1428 'google_apis_unittests', |
| 1429 'installer_util_unittests', | 1429 'installer_util_unittests', |
| 1430 'mini_installer_test', | 1430 'test_mini_installer', |
|
Paweł Hajdan Jr.
2014/06/02 09:54:29
Note that win_rel is no longer used, so this is cl
grt (UTC plus 2)
2014/06/02 10:32:51
sounds like whomever removed win_rel from use shou
Paweł Hajdan Jr.
2014/06/02 11:19:25
Actually we need to keep it because otherwise the
| |
| 1431 'nacl_integration', | 1431 'nacl_integration', |
| 1432 'remoting_unittests', | 1432 'remoting_unittests', |
| 1433 'sync_integration_tests', | 1433 'sync_integration_tests', |
| 1434 'telemetry_perf_unittests', | 1434 'telemetry_perf_unittests', |
| 1435 'telemetry_unittests', | 1435 'telemetry_unittests', |
| 1436 'views_unittests', | 1436 'views_unittests', |
| 1437 ], | 1437 ], |
| 1438 'win_x64_rel': [ | 1438 'win_x64_rel': [ |
| 1439 'base_unittests', | 1439 'base_unittests', |
| 1440 ], | 1440 ], |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1554 builders.extend(['cros_x86']) | 1554 builders.extend(['cros_x86']) |
| 1555 | 1555 |
| 1556 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it | 1556 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it |
| 1557 # unless they're .gyp(i) files as changes to those files can break the gyp | 1557 # unless they're .gyp(i) files as changes to those files can break the gyp |
| 1558 # step on that bot. | 1558 # step on that bot. |
| 1559 if (not all(re.search('^chrome', f) for f in files) or | 1559 if (not all(re.search('^chrome', f) for f in files) or |
| 1560 any(re.search('\.gypi?$', f) for f in files)): | 1560 any(re.search('\.gypi?$', f) for f in files)): |
| 1561 builders.extend(['android_aosp']) | 1561 builders.extend(['android_aosp']) |
| 1562 | 1562 |
| 1563 return GetDefaultTryConfigs(builders) | 1563 return GetDefaultTryConfigs(builders) |
| OLD | NEW |