Index: PRESUBMIT.py |
diff --git a/PRESUBMIT.py b/PRESUBMIT.py |
index eafc8fe35a13ce7600db422c8feb792690b56457..ac671b157c81a4eb2acde7aa211a7aaa41112795 100644 |
--- a/PRESUBMIT.py |
+++ b/PRESUBMIT.py |
@@ -1606,22 +1606,22 @@ def GetDefaultTryConfigs(bots=None): |
'linux_gtk': standard_tests, |
'linux_chromeos_asan': ['compile'], |
'linux_chromium_chromeos_clang_dbg': ['defaulttests'], |
- 'linux_chromium_chromeos_rel_swarming': ['defaulttests'], |
Paweł Hajdan Jr.
2014/10/22 15:15:23
Could you keep the _swarming lines there and inste
jam
2014/10/22 16:00:59
no i dont see why we should to that. if a presubmi
|
+ 'linux_chromium_chromeos_rel': ['defaulttests'], |
'linux_chromium_compile_dbg': ['defaulttests'], |
'linux_chromium_gn_dbg': ['compile'], |
'linux_chromium_gn_rel': ['defaulttests'], |
- 'linux_chromium_rel_swarming': ['defaulttests'], |
+ 'linux_chromium_rel': ['defaulttests'], |
'linux_chromium_clang_dbg': ['defaulttests'], |
'linux_gpu': ['defaulttests'], |
'linux_nacl_sdk_build': ['compile'], |
'mac_chromium_compile_dbg': ['defaulttests'], |
- 'mac_chromium_rel_swarming': ['defaulttests'], |
+ 'mac_chromium_rel': ['defaulttests'], |
'mac_gpu': ['defaulttests'], |
'mac_nacl_sdk_build': ['compile'], |
'win_chromium_compile_dbg': ['defaulttests'], |
'win_chromium_dbg': ['defaulttests'], |
- 'win_chromium_rel_swarming': ['defaulttests'], |
- 'win_chromium_x64_rel_swarming': ['defaulttests'], |
+ 'win_chromium_rel': ['defaulttests'], |
+ 'win_chromium_x64_rel': ['defaulttests'], |
'win_gpu': ['defaulttests'], |
'win_nacl_sdk_build': ['compile'], |
'win8_chromium_rel': ['defaulttests'], |
@@ -1671,12 +1671,12 @@ def GetPreferredTryMasters(project, change): |
if all(re.search(r'\.(m|mm)$|(^|[\\\/_])mac[\\\/_.]', f) for f in files): |
return GetDefaultTryConfigs([ |
'mac_chromium_compile_dbg', |
- 'mac_chromium_rel_swarming', |
+ 'mac_chromium_rel', |
]) |
if all(re.search('(^|[/_])win[/_.]', f) for f in files): |
return GetDefaultTryConfigs([ |
'win_chromium_dbg', |
- 'win_chromium_rel_swarming', |
+ 'win_chromium_rel', |
'win8_chromium_rel', |
]) |
if all(re.search(r'(^|[\\\/_])android[\\\/_.]', f) for f in files): |
@@ -1698,18 +1698,18 @@ def GetPreferredTryMasters(project, change): |
'ios_dbg_simulator', |
'ios_rel_device', |
'ios_rel_device_ninja', |
- 'linux_chromium_chromeos_rel_swarming', |
+ 'linux_chromium_chromeos_rel', |
'linux_chromium_clang_dbg', |
'linux_chromium_gn_dbg', |
'linux_chromium_gn_rel', |
- 'linux_chromium_rel_swarming', |
+ 'linux_chromium_rel', |
'linux_gpu', |
'mac_chromium_compile_dbg', |
- 'mac_chromium_rel_swarming', |
+ 'mac_chromium_rel', |
'mac_gpu', |
'win_chromium_compile_dbg', |
- 'win_chromium_rel_swarming', |
- 'win_chromium_x64_rel_swarming', |
+ 'win_chromium_rel', |
+ 'win_chromium_x64_rel', |
'win_gpu', |
'win8_chromium_rel', |
] |