0

Over the last week (or so) a couple of CLs had to be reverted because developers had not tested win_aura, specifically:

1. The default trybot rules don't include win_aura in enough cases
 2. The CQ did not build win_aura

BUG=141701
TBR=sky

Review URL: https://chromiumcodereview.appspot.com/10831242

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150950 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
saintlou@chromium.org
2012-08-10 00:14:45 +00:00
parent cf5f1a6f9e
commit 0be9553a09
7 changed files with 12 additions and 9 deletions
PRESUBMIT.py
ash
ui
aura
resources
default_100_percent
default_200_percent

@ -592,8 +592,11 @@ def GetPreferredTrySlaves(project, change):
'android']
# Match things like path/aura/file.cc and path/file_aura.cc.
# Same for chromeos.
if any(re.search('[/_](aura|chromeos)', f) for f in files):
trybots += ['linux_chromeos', 'linux_chromeos_clang:compile']
# Same for ash and chromeos.
if any(re.search('[/_](ash|aura)', f) for f in files):
trybots += ['linux_chromeos', 'linux_chromeos_clang:compile', 'win_aura']
else:
if any(re.search('[/_]chromeos', f) for f in files):
trybots += ['linux_chromeos', 'linux_chromeos_clang:compile']
return trybots

@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
"""
def GetPreferredTrySlaves():
return ['linux_chromeos', 'linux_chromeos_clang']
return ['linux_chromeos', 'linux_chromeos_clang', 'win_aura']

@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
"""
def GetPreferredTrySlaves():
return ['linux_chromeos', 'linux_aura']
return ['linux_chromeos', 'linux_aura', 'win_aura']

@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
"""
def GetPreferredTrySlaves():
return ['linux_chromeos']
return ['linux_chromeos', 'win_aura']

@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
"""
def GetPreferredTrySlaves():
return ['linux_chromeos']
return ['linux_chromeos', 'win_aura']

@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
"""
def GetPreferredTrySlaves():
return ['linux_chromeos']
return ['linux_chromeos', 'win_aura']

@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
"""
def GetPreferredTrySlaves():
return ['linux_chromeos']
return ['linux_chromeos', 'win_aura']