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

Side by Side Diff: BUILD.gn

Issue 2332473003: SkPDF: SkShaper_primitive uses new textblob API (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 | tools/SkShaper_primitive.cpp » ('j') | 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 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 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
779 ":gm", 779 ":gm",
780 ":gpu_tool_utils", 780 ":gpu_tool_utils",
781 ":skia", 781 ":skia",
782 ":tool_utils", 782 ":tool_utils",
783 "//third_party/jsoncpp", 783 "//third_party/jsoncpp",
784 ] 784 ]
785 testonly = true 785 testonly = true
786 } 786 }
787 787
788 if (current_cpu != "mipsel") { # Clang 3.8 crashes while compiling hb-icu.cc for mipsel. 788 if (current_cpu != "mipsel") { # Clang 3.8 crashes while compiling hb-icu.cc for mipsel.
789 executable("sktexttopdf") { 789 executable("sktexttopdf-hb") {
790 sources = [ 790 sources = [
791 "tools/SkShaper_harfbuzz.cpp", 791 "tools/SkShaper_harfbuzz.cpp",
792 "tools/using_skia_and_harfbuzz.cpp", 792 "tools/using_skia_and_harfbuzz.cpp",
793 ] 793 ]
794 deps = [ 794 deps = [
795 ":skia", 795 ":skia",
796 "//third_party/harfbuzz", 796 "//third_party/harfbuzz",
797 ] 797 ]
798 testonly = true 798 testonly = true
799 } 799 }
800 } 800 }
801 executable("sktexttopdf") {
802 sources = [
803 "tools/SkShaper_primitive.cpp",
804 "tools/using_skia_and_harfbuzz.cpp",
805 ]
806 deps = [
807 ":skia",
808 ]
809 testonly = true
810 }
801 } 811 }
OLDNEW
« no previous file with comments | « no previous file | tools/SkShaper_primitive.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698