Index: infra/bots/recipe_modules/skia/gn_flavor.py |
diff --git a/infra/bots/recipe_modules/skia/gn_flavor.py b/infra/bots/recipe_modules/skia/gn_flavor.py |
index cdb26e0631f9b192d891fc6f540047859d7a0b11..c4988fbe16a6df7962e4159ee3eb340fe894e1ed 100644 |
--- a/infra/bots/recipe_modules/skia/gn_flavor.py |
+++ b/infra/bots/recipe_modules/skia/gn_flavor.py |
@@ -26,9 +26,9 @@ class GNFlavorUtils(default_flavor.DefaultFlavorUtils): |
ccache = self._skia_api.ccache() |
if ccache: |
- cc, cxx = '"%s %s"' % (ccache, cc), '"%s %s"' % (ccache, cxx) |
+ cc, cxx = '%s %s' % (ccache, cc), '%s %s' % (ccache, cxx) |
- gn_args += [ 'cc=' + cc, 'cxx=' + cxx ] |
+ gn_args += [ 'cc="%s"' % cc, 'cxx="%s"' % cxx ] |
# Run gn gen. |
gn_exe = 'gn' |