diff options
author | nileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 16:30:31 +0000 |
---|---|---|
committer | nileshagrawal@chromium.org <nileshagrawal@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 16:30:31 +0000 |
commit | d602b9093b570d905b0c4ed325739adfa72506d4 (patch) | |
tree | d53fdb6f3d31222ed1cc949e17d839845bd7ead5 /PRESUBMIT.py | |
parent | 9bf2a8d5a178b92327a9364145ed1febdd444a91 (diff) | |
download | chromium_src-d602b9093b570d905b0c4ed325739adfa72506d4.zip chromium_src-d602b9093b570d905b0c4ed325739adfa72506d4.tar.gz chromium_src-d602b9093b570d905b0c4ed325739adfa72506d4.tar.bz2 |
Add unit_tests bundle as a default compile target for Android.
Since With this change we will start compiling unit_tests_apk on the main
waterfall, we are making android a default try bot.
To be submitted after we have increased our capacity to handle the extra
load.
BUG=117407
TEST=
Review URL: https://chromiumcodereview.appspot.com/10808022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147453 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'PRESUBMIT.py')
-rw-r--r-- | PRESUBMIT.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/PRESUBMIT.py b/PRESUBMIT.py index 009df4c..ba38fed 100644 --- a/PRESUBMIT.py +++ b/PRESUBMIT.py @@ -510,12 +510,10 @@ def GetPreferredTrySlaves(project, change): if all(re.search('[/_]android[/_.]', f) for f in files): return ['android'] - trybots = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile'] + trybots = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile', + 'android'] # match things like aurax11.cc or aura_oak.cc if any(re.search('[/_]aura', f) for f in files): trybots.append('linux_chromeos') - if not all(f.startswith('chrome/') for f in files): - trybots.append('android') - return trybots |