| Index: infra/bots/recipe_modules/flavor/cmake_flavor.py
|
| diff --git a/infra/bots/recipe_modules/flavor/cmake_flavor.py b/infra/bots/recipe_modules/flavor/cmake_flavor.py
|
| index 8b254eceb72e8968f7b3cbd82415a7d7ca57df05..5a127dff52688713ac0fd61c42e18493aa8b4a55 100644
|
| --- a/infra/bots/recipe_modules/flavor/cmake_flavor.py
|
| +++ b/infra/bots/recipe_modules/flavor/cmake_flavor.py
|
| @@ -7,8 +7,8 @@ import default_flavor
|
| """CMake flavor utils, used for building Skia with CMake."""
|
|
|
| class CMakeFlavorUtils(default_flavor.DefaultFlavorUtils):
|
| - def compile(self, target):
|
| + def compile(self, target, **kwargs):
|
| """Build Skia with CMake. Ignores `target`."""
|
| cmake_build = self.m.vars.skia_dir.join('cmake', 'cmake_build')
|
| self.m.run(self.m.step, 'cmake_build', cmd=[cmake_build],
|
| - cwd=self.m.path['checkout'])
|
| + cwd=self.m.path['checkout'], **kwargs)
|
|
|