1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 import("//build/config/chrome_build.gni")
6 import("//build/config/linux/pkg_config.gni")
7 import("//build/config/ui.gni")
9 # The GYP build supports system harfbuzz for non-official builds when using
10 # pangoft2 1.31.0 or greater (which pulls it in).
11 # TODO(brettw) we can consider doing this as well, although the benefit is
12 # unclear and requires shelling out to a script to check the version.
14 # ChromeOS uses an up-to-date system one that we have control over, so we
15 # don't want to bloat the binary more by including another copy.
18 # Since version 1.31.0, pangoft2 which we depend on pulls in harfbuzz
19 # anyways. However, we want to have control of the version of harfbuzz
20 # we use, so don't use system harfbuzz unless we are building for
21 # chrome os, where we have the system harfbuzz under control.
23 is_linux && is_chromeos && exec_script(pkg_config_script,
25 "--atleast-version=1.31.0",
31 if (use_system_harfbuzz) {
32 import("//build/config/linux/pkg_config.gni")
33 pkg_config("harfbuzz_pkgconfig") {
34 packages = [ "harfbuzz" ]
36 group("harfbuzz-ng") {
37 public_configs = [ ":harfbuzz_pkgconfig" ]
40 config("harfbuzz-ng_config") {
41 include_dirs = [ "src" ]
44 static_library("harfbuzz-ng") {
46 "src/hb-atomic-private.hh",
49 "src/hb-buffer-deserialize-json.hh",
50 "src/hb-buffer-deserialize-text.hh",
51 "src/hb-buffer-private.hh",
52 "src/hb-buffer-serialize.cc",
55 "src/hb-cache-private.hh",
58 "src/hb-deprecated.h",
59 "src/hb-face-private.hh",
62 "src/hb-fallback-shape.cc",
63 "src/hb-font-private.hh",
68 "src/hb-mutex-private.hh",
69 "src/hb-object-private.hh",
70 "src/hb-open-file-private.hh",
71 "src/hb-open-type-private.hh",
74 "src/hb-ot-head-table.hh",
75 "src/hb-ot-hhea-table.hh",
76 "src/hb-ot-hmtx-table.hh",
77 "src/hb-ot-layout-common-private.hh",
78 "src/hb-ot-layout-gdef-table.hh",
79 "src/hb-ot-layout-gpos-table.hh",
80 "src/hb-ot-layout-gsub-table.hh",
81 "src/hb-ot-layout-gsubgpos-private.hh",
82 "src/hb-ot-layout-private.hh",
83 "src/hb-ot-layout.cc",
85 "src/hb-ot-map-private.hh",
87 "src/hb-ot-maxp-table.hh",
88 "src/hb-ot-name-table.hh",
89 "src/hb-ot-shape-complex-arabic-fallback.hh",
90 "src/hb-ot-shape-complex-arabic-private.hh",
91 "src/hb-ot-shape-complex-arabic-table.hh",
92 "src/hb-ot-shape-complex-arabic.cc",
93 "src/hb-ot-shape-complex-default.cc",
94 "src/hb-ot-shape-complex-hangul.cc",
95 "src/hb-ot-shape-complex-hebrew.cc",
96 "src/hb-ot-shape-complex-indic-machine.hh",
97 "src/hb-ot-shape-complex-indic-private.hh",
98 "src/hb-ot-shape-complex-indic-table.cc",
99 "src/hb-ot-shape-complex-indic.cc",
100 "src/hb-ot-shape-complex-myanmar-machine.hh",
101 "src/hb-ot-shape-complex-myanmar.cc",
102 "src/hb-ot-shape-complex-private.hh",
103 "src/hb-ot-shape-complex-thai.cc",
104 "src/hb-ot-shape-complex-tibetan.cc",
105 "src/hb-ot-shape-complex-use-machine.hh",
106 "src/hb-ot-shape-complex-use-private.hh",
107 "src/hb-ot-shape-complex-use-table.cc",
108 "src/hb-ot-shape-complex-use.cc",
109 "src/hb-ot-shape-fallback-private.hh",
110 "src/hb-ot-shape-fallback.cc",
111 "src/hb-ot-shape-normalize-private.hh",
112 "src/hb-ot-shape-normalize.cc",
113 "src/hb-ot-shape-private.hh",
114 "src/hb-ot-shape.cc",
120 "src/hb-set-private.hh",
123 "src/hb-shape-plan-private.hh",
124 "src/hb-shape-plan.cc",
125 "src/hb-shape-plan.h",
128 "src/hb-shaper-impl-private.hh",
129 "src/hb-shaper-list.hh",
130 "src/hb-shaper-private.hh",
132 "src/hb-unicode-private.hh",
135 "src/hb-utf-private.hh",
148 configs -= [ "//build/config/compiler:chromium_code" ]
149 configs += [ "//build/config/compiler:no_chromium_code" ]
151 config("harfbuzz_warnings") {
157 # Harfbuzz uses unused typedefs for its static asserts (and its
158 # static asserts are strange enough that they can't be replaced
160 "-Wno-unused-local-typedef",
164 cflags += [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64 bits.
167 configs += [ ":harfbuzz_warnings" ]
169 public_configs = [ ":harfbuzz-ng_config" ]
172 "//third_party/icu:icuuc",
177 "src/hb-coretext.cc",
180 defines += [ "HAVE_CORETEXT" ]
183 # When without -fvisibility=hidden for pango to use the harfbuzz
184 # in the tree, all symbols pango needs must be included, or
185 # pango uses mixed versions of harfbuzz and leads to crash.
186 # See crbug.com/462689.
187 if (is_linux && use_pango && !is_chromeos && !is_official_build &&
188 current_cpu != "arm" && current_cpu != "mipsel") {
189 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ]
191 "//build/config/linux:freetype2",
192 "//build/config/linux:glib",
202 # See also chrome/browser/ui/libgtk2ui/BUILD.gn which pulls this.
203 config("pangoft2_link_hack") {
204 if (is_linux && use_pango && !is_chromeos && !is_official_build &&
205 current_cpu != "arm" && current_cpu != "mipsel" &&
206 !is_component_build) {
207 # These symbols are referenced from libpangoft2, which will be
208 # dynamically linked later.
210 [ "-Wl,-uhb_ft_face_create_cached,-uhb_glib_get_unicode_funcs" ]