aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes
diff options
context:
space:
mode:
authorGravatar Jim Van Verth <jvanverth@google.com>2018-02-15 09:55:24 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-02-15 15:44:29 +0000
commit240516f772ea27e62f477ba510aabeb84b6f68d5 (patch)
tree5374b502f9d90d3d6f47db3d37d04de822011b9f /infra/bots/recipes
parentce6d93a815dfe61e721745d5a44c0984dbfba304 (diff)
Add NativeFonts support to some GPU bots
Bug: skia:7562 Change-Id: I56e0991999644c02890008123b25f141aed0b70e Reviewed-on: https://skia-review.googlesource.com/107520 Commit-Queue: Jim Van Verth <jvanverth@google.com> Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'infra/bots/recipes')
-rw-r--r--infra/bots/recipes/test.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index 6f6b08ac99..ad337853e5 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -135,9 +135,10 @@ def dm_flags(api, bot):
elif 'ChromeOS' in bot:
gl_prefix = 'gles'
- configs.extend([gl_prefix, gl_prefix + 'dft', gl_prefix + 'srgb'])
- if sample_count is not '':
- configs.append(gl_prefix + 'msaa' + sample_count)
+ if 'NativeFonts' not in bot:
+ configs.extend([gl_prefix, gl_prefix + 'dft', gl_prefix + 'srgb'])
+ if sample_count is not '':
+ configs.append(gl_prefix + 'msaa' + sample_count)
# The NP produces a long error stream when we run with MSAA. The Tegra3 just
# doesn't support it.