| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |