Index: BUILD.gn |
diff --git a/BUILD.gn b/BUILD.gn |
index 8454e4be67d5d40f622ee491fb7651247b018640..67347ea251a47215d717fc3cf6c6b3f8d5214560 100644 |
--- a/BUILD.gn |
+++ b/BUILD.gn |
@@ -804,15 +804,17 @@ if (skia_enable_tools) { |
testonly = true |
} |
- executable("sktexttopdf") { |
- sources = [ |
- "tools/SkShaper_harfbuzz.cpp", |
- "tools/using_skia_and_harfbuzz.cpp", |
- ] |
- deps = [ |
- ":skia", |
- "//third_party/harfbuzz", |
- ] |
- testonly = true |
+ if (current_cpu != "mipsel") { # Clang 3.8 crashes while compiling hb-icu.cc for mipsel. |
+ executable("sktexttopdf") { |
+ sources = [ |
+ "tools/SkShaper_harfbuzz.cpp", |
+ "tools/using_skia_and_harfbuzz.cpp", |
+ ] |
+ deps = [ |
+ ":skia", |
+ "//third_party/harfbuzz", |
+ ] |
+ testonly = true |
+ } |
} |
} |