| Index: scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.py
 | 
| diff --git a/scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.py b/scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.py
 | 
| index 763fbe954ea2dadb387f2804d064691438ed9e42..cf25356ece54b6bacc25e0fed592cffe1c877fdb 100755
 | 
| --- a/scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.py
 | 
| +++ b/scripts/slave/recipe_modules/isolate/resources/compare_build_artifacts.py
 | 
| @@ -21,13 +21,14 @@ def get_files_to_compare(build_dir, recursive=False):
 | 
|    """Get the list of files to compare."""
 | 
|    allowed = frozenset(
 | 
|        ('', '.apk', '.app', '.dll', '.dylib', '.exe', '.nexe', '.so'))
 | 
| +  non_x_ok_exts = frozenset(('.apk', '.isolated'))
 | 
|    def check(f):
 | 
|      if not os.path.isfile(f):
 | 
|        return False
 | 
|      if os.path.basename(f).startswith('.'):
 | 
|        return False
 | 
|      ext = os.path.splitext(f)[1]
 | 
| -    if ext == '.isolated':
 | 
| +    if ext in non_x_ok_exts:
 | 
|        return True
 | 
|      return ext in allowed and os.access(f, os.X_OK)
 | 
|  
 | 
| 
 |