Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Unified Diff: build/toolchain/mac/compile_xcassets.py

Issue 2928623002: Work around Xcode 9 debug actool message. (Closed)
Patch Set: Scope more tightly Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698