Index: build/toolchain/mac/compile_xcassets.py |
diff --git a/build/toolchain/mac/compile_xcassets.py b/build/toolchain/mac/compile_xcassets.py |
index ac0742eb56f7800656b3f229681b14ae0baaa531..7e2dbcaad38e0f127cec8e37a50f21d4f61c58b6 100644 |
--- a/build/toolchain/mac/compile_xcassets.py |
+++ b/build/toolchain/mac/compile_xcassets.py |
@@ -62,6 +62,12 @@ def CompileXCAssets( |
continue |
if line == os.path.abspath(output): |
continue |
+ # crbug.com/730054 Xcode 9's beta introduced a CoreUI(DEBUG) message and |
+ # IBMessageChannelErrorDomain message that can be ignored. |
+ if line.startswith('CoreUI(DEBUG)'): |
+ continue |
+ if 'Error Domain=IBMessageChannelErrorDomain Code=4' in line: |
+ continue |
sys.stderr.write(stdout) |
sys.exit(1) |