Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(532)

Unified Diff: infra/bots/recipe_modules/flavor/default_flavor.py

Issue 2231943002: Use SVGs CIPD package and use SVG as a DM source (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Address comment Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « infra/bots/recipe_modules/flavor/api.py ('k') | infra/bots/recipe_modules/flavor/ios_flavor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/recipe_modules/flavor/default_flavor.py
diff --git a/infra/bots/recipe_modules/flavor/default_flavor.py b/infra/bots/recipe_modules/flavor/default_flavor.py
index 3670457474b9bea9ce0eed84a1aca56fb9c197d8..80a0a171df25deb12e0461c17d6013b5c7885d01 100644
--- a/infra/bots/recipe_modules/flavor/default_flavor.py
+++ b/infra/bots/recipe_modules/flavor/default_flavor.py
@@ -22,12 +22,14 @@ class DeviceDirs(object):
resource_dir,
images_dir,
skp_dir,
+ svg_dir,
tmp_dir):
self._dm_dir = dm_dir
self._perf_data_dir = perf_data_dir
self._resource_dir = resource_dir
self._images_dir = images_dir
self._skp_dir = skp_dir
+ self._svg_dir = svg_dir
self._tmp_dir = tmp_dir
@property
@@ -53,6 +55,10 @@ class DeviceDirs(object):
return self._skp_dir
@property
+ def svg_dir(self):
+ return self._svg_dir
+
+ @property
def tmp_dir(self):
return self._tmp_dir
@@ -220,6 +226,7 @@ class DefaultFlavorUtils(object):
resource_dir=self.m.vars.resource_dir,
images_dir=self.m.vars.images_dir,
skp_dir=self.m.vars.local_skp_dir,
+ svg_dir=self.m.vars.local_svg_dir,
tmp_dir=self.m.vars.tmp_dir)
def cleanup_steps(self):
« no previous file with comments | « infra/bots/recipe_modules/flavor/api.py ('k') | infra/bots/recipe_modules/flavor/ios_flavor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698