aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Kevin Lubick <kjlubick@google.com>2018-01-17 10:02:17 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-17 15:27:16 +0000
commit8baaef9f542597fe786df5f9884830376f691fd6 (patch)
treebf41bdaba85eca0ab2d38bcd19e6653f91222958
parent94a6ce84ece51ff1c46c698753716f3f47585742 (diff)
No SRGB for Chromecasts
Bug: skia: Change-Id: If1fc0854a42407fa6acd8d333ef49ae0b6302a81 Reviewed-on: https://skia-review.googlesource.com/95640 Reviewed-by: Mike Klein <mtklein@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
-rw-r--r--infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json1
-rw-r--r--infra/bots/recipes/test.py2
2 files changed, 1 insertions, 2 deletions
diff --git a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json
index 4b08240f2e..4b1f343c07 100644
--- a/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json
+++ b/infra/bots/recipes/test.expected/Test-Chromecast-GCC-Chorizo-CPU-Cortex_A7-arm-Release-All.json
@@ -469,7 +469,6 @@
"--nogpu",
"--config",
"8888",
- "srgb",
"--src",
"tests",
"gm",
diff --git a/infra/bots/recipes/test.py b/infra/bots/recipes/test.py
index cb70352774..a6c34f95aa 100644
--- a/infra/bots/recipes/test.py
+++ b/infra/bots/recipes/test.py
@@ -118,7 +118,7 @@ def dm_flags(api, bot):
# Just do the basic config on Chromecast to avoid OOM.
if 'Chromecast' in bot:
- configs = ['8888', 'srgb']
+ configs = ['8888']
elif api.vars.builder_cfg.get('cpu_or_gpu') == 'GPU':
args.append('--nocpu')