Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: PRESUBMIT.py

Issue 603413002: Revert of Start building ui_base_unittests targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ash/wm/ash_native_cursor_manager_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1495 matching lines...) Expand 10 before | Expand all | Expand 10 after
1506 'android_dbg_tests_recipe': ['slave_steps'], 1506 'android_dbg_tests_recipe': ['slave_steps'],
1507 'cros_x86': ['defaulttests'], 1507 'cros_x86': ['defaulttests'],
1508 'ios_dbg_simulator': [ 1508 'ios_dbg_simulator': [
1509 'compile', 1509 'compile',
1510 'base_unittests', 1510 'base_unittests',
1511 'content_unittests', 1511 'content_unittests',
1512 'crypto_unittests', 1512 'crypto_unittests',
1513 'url_unittests', 1513 'url_unittests',
1514 'net_unittests', 1514 'net_unittests',
1515 'sql_unittests', 1515 'sql_unittests',
1516 'ui_base_unittests',
1517 'ui_unittests', 1516 'ui_unittests',
1518 ], 1517 ],
1519 'ios_rel_device': ['compile'], 1518 'ios_rel_device': ['compile'],
1520 'ios_rel_device_ninja': ['compile'], 1519 'ios_rel_device_ninja': ['compile'],
1521 'linux_asan': ['compile'], 1520 'linux_asan': ['compile'],
1522 'mac_asan': ['compile'], 1521 'mac_asan': ['compile'],
1523 #TODO(stip): Change the name of this builder to reflect that it's release. 1522 #TODO(stip): Change the name of this builder to reflect that it's release.
1524 'linux_gtk': standard_tests, 1523 'linux_gtk': standard_tests,
1525 'linux_chromeos_asan': ['compile'], 1524 'linux_chromeos_asan': ['compile'],
1526 'linux_chromium_chromeos_clang_dbg': ['defaulttests'], 1525 'linux_chromium_chromeos_clang_dbg': ['defaulttests'],
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
1648 builders.extend(['cros_x86']) 1647 builders.extend(['cros_x86'])
1649 1648
1650 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it 1649 # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it
1651 # unless they're .gyp(i) files as changes to those files can break the gyp 1650 # unless they're .gyp(i) files as changes to those files can break the gyp
1652 # step on that bot. 1651 # step on that bot.
1653 if (not all(re.search('^chrome', f) for f in files) or 1652 if (not all(re.search('^chrome', f) for f in files) or
1654 any(re.search('\.gypi?$', f) for f in files)): 1653 any(re.search('\.gypi?$', f) for f in files)):
1655 builders.extend(['android_aosp']) 1654 builders.extend(['android_aosp'])
1656 1655
1657 return GetDefaultTryConfigs(builders) 1656 return GetDefaultTryConfigs(builders)
OLDNEW
« no previous file with comments | « no previous file | ash/wm/ash_native_cursor_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698