aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipe_modules/vars/api.py
diff options
context:
space:
mode:
authorGravatar Kevin Lubick <kjlubick@google.com>2017-03-21 09:25:34 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-03-21 14:52:26 +0000
commit291547d4e76ba7d3e9caace8deb7761632d8be06 (patch)
tree4fe8c628e76f6c395c13ac704593397ba4c167d4 /infra/bots/recipe_modules/vars/api.py
parenta33b43d796f03e2f4b5abd8060272f4f775d7390 (diff)
Add Chromecast Perf jobs
It starts out with some skps and resource-based perf because all skps wouldn't fit and skimages are far too large BUG=skia: Change-Id: Icb07ffa84d39a85a8bc595e74ef934df921e749a Reviewed-on: https://skia-review.googlesource.com/9901 Commit-Queue: Kevin Lubick <kjlubick@google.com> Reviewed-by: Eric Boren <borenet@google.com>
Diffstat (limited to 'infra/bots/recipe_modules/vars/api.py')
-rw-r--r--infra/bots/recipe_modules/vars/api.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py
index 93910fecda..63e3e4f748 100644
--- a/infra/bots/recipe_modules/vars/api.py
+++ b/infra/bots/recipe_modules/vars/api.py
@@ -163,6 +163,11 @@ class SkiaVarsApi(recipe_api.RecipeApi):
# Executables go under _bin_dir, which, well, allows executable files.
self.android_bin_dir = '/data/local/tmp/'
+ if self.builder_cfg.get('os', '') == 'Chromecast':
+ # On the Chromecast, everything goes in the (~110M) /cache/skia
+ self.android_bin_dir = '/cache/skia/'
+ self.android_data_dir = '/cache/skia/'
+
@property
def upload_dm_results(self):
# TODO(borenet): Move this into the swarm_test recipe.