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

Unified Diff: PRESUBMIT.py

Issue 12328039: Add a few more configs to try jobs to match CQ (win:compile, mac:compile). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
===================================================================
--- PRESUBMIT.py (revision 183383)
+++ PRESUBMIT.py (working copy)
@@ -844,9 +844,9 @@
return []
if all(re.search('\.(m|mm)$|(^|[/_])mac[/_.]', f) for f in files):
- return ['mac_rel', 'mac_asan']
+ return ['mac_rel', 'mac_asan', 'mac:compile']
if all(re.search('(^|[/_])win[/_.]', f) for f in files):
- return ['win_rel']
+ return ['win_rel', 'win7_aura', 'win:compile']
if all(re.search('(^|[/_])android[/_.]', f) for f in files):
return ['android_dbg', 'android_clang_dbg']
if all(re.search('^native_client_sdk', f) for f in files):
@@ -866,8 +866,10 @@
'linux_rel',
'mac_asan',
'mac_rel',
+ 'mac:compile',
'win7_aura',
'win_rel',
+ 'win:compile',
]
# Match things like path/aura/file.cc and path/file_aura.cc.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698