| Index: infra/bots/recipe_modules/flavor/ios_flavor.py
 | 
| diff --git a/infra/bots/recipe_modules/flavor/ios_flavor.py b/infra/bots/recipe_modules/flavor/ios_flavor.py
 | 
| index d0d60f428442e0af91fc5887f871e1e65b278f5c..d59b248912ba78a5c8d3d240b559fe48b29a4c17 100644
 | 
| --- a/infra/bots/recipe_modules/flavor/ios_flavor.py
 | 
| +++ b/infra/bots/recipe_modules/flavor/ios_flavor.py
 | 
| @@ -35,11 +35,11 @@ class iOSFlavorUtils(default_flavor.DefaultFlavorUtils):
 | 
|      return self.m.run(self.m.step, name=name, cmd=args + cmd,
 | 
|                              env=env, **kwargs)
 | 
|  
 | 
| -  def compile(self, target):
 | 
| +  def compile(self, target, **kwargs):
 | 
|      """Build the given target."""
 | 
|      cmd = [self.ios_bin.join('ios_ninja')]
 | 
|      self.m.run(self.m.step, 'build iOSShell', cmd=cmd,
 | 
| -                     cwd=self.m.path['checkout'])
 | 
| +               cwd=self.m.path['checkout'], **kwargs)
 | 
|  
 | 
|    def device_path_join(self, *args):
 | 
|      """Like os.path.join(), but for paths on a connected iOS device."""
 | 
| 
 |