Index: build/linux/unbundle/remove_bundled_libraries.py |
diff --git a/build/linux/unbundle/remove_bundled_libraries.py b/build/linux/unbundle/remove_bundled_libraries.py |
index 09a9c629fd9a09d974e11c617b8dbdf9506fe445..2e67c2a3793ec9d853a51d91191983bced1a69db 100755 |
--- a/build/linux/unbundle/remove_bundled_libraries.py |
+++ b/build/linux/unbundle/remove_bundled_libraries.py |
@@ -60,6 +60,13 @@ def DoMain(argv): |
if f.endswith('.gyp') or f.endswith('.gypi'): |
continue |
+ # Deleting .isolate files leads to gyp failures. They are usually |
+ # not used by a distro build anyway. |
+ # See http://www.chromium.org/developers/testing/isolated-testing |
+ # for more info. |
+ if f.endswith('.isolate'): |
+ continue |
+ |
if options.do_remove: |
# Delete the file - best way to ensure it's not used during build. |
os.remove(path) |