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

Side by Side Diff: PRESUBMIT.py

Issue 621963002: Reland the initial attempt to start building ui_base_unittests targets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo 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 1545 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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)
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