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

Side by Side Diff: BUILD.gn

Issue 2286303004: Disable sktexttopdf when building for mipsel. (Closed)
Patch Set: Created 4 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 declare_args() { 6 declare_args() {
7 skia_enable_tools = !is_fuchsia && !is_component_build 7 skia_enable_tools = !is_fuchsia && !is_component_build
8 8
9 skia_use_expat = true 9 skia_use_expat = true
10 skia_use_fontconfig = is_linux 10 skia_use_fontconfig = is_linux
(...skipping 786 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 ":flags", 797 ":flags",
798 ":gm", 798 ":gm",
799 ":gpu_tool_utils", 799 ":gpu_tool_utils",
800 ":skia", 800 ":skia",
801 ":tool_utils", 801 ":tool_utils",
802 "//third_party/jsoncpp", 802 "//third_party/jsoncpp",
803 ] 803 ]
804 testonly = true 804 testonly = true
805 } 805 }
806 806
807 executable("sktexttopdf") { 807 if (current_cpu != "mipsel") { # Clang 3.8 crashes while compiling hb-icu.cc for mipsel.
808 sources = [ 808 executable("sktexttopdf") {
809 "tools/SkShaper_harfbuzz.cpp", 809 sources = [
810 "tools/using_skia_and_harfbuzz.cpp", 810 "tools/SkShaper_harfbuzz.cpp",
811 ] 811 "tools/using_skia_and_harfbuzz.cpp",
812 deps = [ 812 ]
813 ":skia", 813 deps = [
814 "//third_party/harfbuzz", 814 ":skia",
815 ] 815 "//third_party/harfbuzz",
816 testonly = true 816 ]
817 testonly = true
818 }
817 } 819 }
818 } 820 }
OLDNEW
« 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