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

Unified Diff: PRESUBMIT.py

Issue 2004423002: ⛅ Fix presubmit test for android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 10f1fd004897a37a746cb07c6b31d5e176163282..5fe8b535146d44f9ec47e22c3619d022fae5b258 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -2106,7 +2106,9 @@ def GetTryServerMasterForBot(bot):
}
master = master_map.get(bot)
if not master:
- if 'linux' in bot or 'android' in bot or 'presubmit' in bot:
+ if 'android' in bot:
+ master = 'tryserver.chromium.android'
+ elif 'linux' in bot or 'presubmit' in bot:
master = 'tryserver.chromium.linux'
elif 'win' in bot:
master = 'tryserver.chromium.win'
« 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