| Index: scripts/slave/recipe_modules/chromium/api.py | 
| diff --git a/scripts/slave/recipe_modules/chromium/api.py b/scripts/slave/recipe_modules/chromium/api.py | 
| index 228457af0a6a2069db78f59bba22aace447d7ea4..f91decd23be66bf82f26ec69c0a9c1359ed2668b 100644 | 
| --- a/scripts/slave/recipe_modules/chromium/api.py | 
| +++ b/scripts/slave/recipe_modules/chromium/api.py | 
| @@ -216,9 +216,12 @@ class ChromiumApi(recipe_api.RecipeApi): | 
| env=env) | 
|  | 
| def run_telemetry_unittests(self): | 
| +    browser = self.c.BUILD_CONFIG.lower() | 
| +    if self.m.platform.is_win and self.c.TARGET_BITS == 64: | 
| +      browser += '_x64' | 
| return self.runtest( | 
| self.m.path['checkout'].join('tools', 'telemetry', 'run_tests'), | 
| -        args=['--browser=%s' % self.c.BUILD_CONFIG.lower()], | 
| +        args=['--browser=%s' % browser], | 
| annotate='gtest', | 
| name='telemetry_unittests', | 
| test_type='telemetry_unittests', | 
| @@ -226,9 +229,12 @@ class ChromiumApi(recipe_api.RecipeApi): | 
| xvfb=True) | 
|  | 
| def run_telemetry_perf_unittests(self): | 
| +    browser = self.c.BUILD_CONFIG.lower() | 
| +    if self.m.platform.is_win and self.c.TARGET_BITS == 64: | 
| +      browser += '_x64' | 
| return self.runtest( | 
| self.m.path['checkout'].join('tools', 'perf', 'run_tests'), | 
| -        args=['--browser=%s' % self.c.BUILD_CONFIG.lower()], | 
| +        args=['--browser=%s' % browser], | 
| annotate='gtest', | 
| name='telemetry_perf_unittests', | 
| test_type='telemetry_perf_unittests', | 
|  |