diff options
author | mkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 10:51:00 +0000 |
---|---|---|
committer | mkosiba@chromium.org <mkosiba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-02 10:51:00 +0000 |
commit | d95948ef136025b52f070d63fe02469037909414 (patch) | |
tree | dc1725ae166a623acb77d7d039e650fb6b7c1737 | |
parent | 6a5f8f5370bb71dcfd39cec15040d3e799e76716 (diff) | |
download | chromium_src-d95948ef136025b52f070d63fe02469037909414.zip chromium_src-d95948ef136025b52f070d63fe02469037909414.tar.gz chromium_src-d95948ef136025b52f070d63fe02469037909414.tar.bz2 |
Add the android_aosp trybot to PRESUBMIT.py
This adds the android_aosp trybot to the preferred trybot set.
BUG=None
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/18367002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@209667 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | PRESUBMIT.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 564f978..cf74399 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -1010,7 +1010,7 @@ def GetPreferredTrySlaves(project, change): if all(re.search('(^|[/_])win[/_.]', f) for f in files): return ['win_rel', 'win7_aura', 'win:compile'] if all(re.search('(^|[/_])android[/_.]', f) for f in files): - return ['android_dbg', 'android_clang_dbg'] + return ['android_aosp', 'android_dbg', 'android_clang_dbg'] if all(re.search('^native_client_sdk', f) for f in files): return ['linux_nacl_sdk', 'win_nacl_sdk', 'mac_nacl_sdk'] if all(re.search('[/_]ios[/_.]', f) for f in files): @@ -1039,4 +1039,11 @@ def GetPreferredTrySlaves(project, change): if any(re.search('[/_](aura|chromeos)', f) for f in files): trybots += ['linux_chromeos_clang:compile', 'linux_chromeos_asan'] + # The AOSP bot doesn't build the chrome/ layer, so ignore any changes to it + # unless they're .gyp(i) files as changes to those files can break the gyp + # step on that bot. + if (not all(re.search('^chrome', f) for f in files) or + any(re.search('\.gypi?$', f) for f in files)): + trybots += ['android_aosp'] + return trybots |