| Index: systrace/systrace/decorators.py | 
| diff --git a/systrace/systrace/decorators.py b/systrace/systrace/decorators.py | 
| index ee3a660538f7ca4ecc69b4fef91d79bc403795e7..a0cf38b0aba1a4207697a7ce91a5a029db6030a5 100644 | 
| --- a/systrace/systrace/decorators.py | 
| +++ b/systrace/systrace/decorators.py | 
| @@ -14,7 +14,13 @@ def HostOnlyTest(func): | 
| def ClientOnlyTest(func): | 
| """Decorator for running unit tests only on client devices (Android). | 
| """ | 
| -  return _SkipTestDecoratorHelper(func, ['windows', 'linux', 'mac']) | 
| +  return _SkipTestDecoratorHelper(func, ['win', 'linux', 'mac']) | 
| + | 
| + | 
| +def Disabled(func): | 
| +  """Decorator for not running a unit test on any Trybot platform. | 
| +  """ | 
| +  return _SkipTestDecoratorHelper(func, ['win', 'linux', 'mac', 'android']) | 
|  | 
|  | 
| def _SkipTestDecoratorHelper(func, disabled_strings): | 
|  |