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

Unified Diff: BUILD.gn

Issue 2286303004: Disable sktexttopdf when building for mipsel. (Closed)
Patch Set: Created 4 years, 4 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.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
+ }
}
}
« 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