| 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 import("gn/shared_sources.gni") | 6 import("gn/shared_sources.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 skia_enable_tools = !is_fuchsia && !is_component_build | 9 skia_enable_tools = !is_fuchsia && !is_component_build |
| 10 | 10 |
| (...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 832 ":flags", | 832 ":flags", |
| 833 ":gm", | 833 ":gm", |
| 834 ":gpu_tool_utils", | 834 ":gpu_tool_utils", |
| 835 ":skia", | 835 ":skia", |
| 836 ":tool_utils", | 836 ":tool_utils", |
| 837 "//third_party/jsoncpp", | 837 "//third_party/jsoncpp", |
| 838 ] | 838 ] |
| 839 testonly = true | 839 testonly = true |
| 840 } | 840 } |
| 841 | 841 |
| 842 executable("skpbench") { |
| 843 sources = [ |
| 844 "tools/skpbench/skpbench.cpp", |
| 845 ] |
| 846 deps = [ |
| 847 ":flags", |
| 848 ":gpu_tool_utils", |
| 849 ":skia", |
| 850 ":tool_utils", |
| 851 ] |
| 852 testonly = true |
| 853 } |
| 854 |
| 842 if (current_cpu != "mipsel") { # Clang 3.8 crashes while compiling hb-icu.cc
for mipsel. | 855 if (current_cpu != "mipsel") { # Clang 3.8 crashes while compiling hb-icu.cc
for mipsel. |
| 843 executable("sktexttopdf-hb") { | 856 executable("sktexttopdf-hb") { |
| 844 sources = [ | 857 sources = [ |
| 845 "tools/SkShaper_harfbuzz.cpp", | 858 "tools/SkShaper_harfbuzz.cpp", |
| 846 "tools/using_skia_and_harfbuzz.cpp", | 859 "tools/using_skia_and_harfbuzz.cpp", |
| 847 ] | 860 ] |
| 848 deps = [ | 861 deps = [ |
| 849 ":skia", | 862 ":skia", |
| 850 "//third_party/harfbuzz", | 863 "//third_party/harfbuzz", |
| 851 ] | 864 ] |
| (...skipping 16 matching lines...) Expand all Loading... |
| 868 "tools/get_images_from_skps.cpp", | 881 "tools/get_images_from_skps.cpp", |
| 869 ] | 882 ] |
| 870 deps = [ | 883 deps = [ |
| 871 ":flags", | 884 ":flags", |
| 872 ":skia", | 885 ":skia", |
| 873 "//third_party/jsoncpp", | 886 "//third_party/jsoncpp", |
| 874 ] | 887 ] |
| 875 testonly = true | 888 testonly = true |
| 876 } | 889 } |
| 877 } | 890 } |
| OLD | NEW |