OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
| 5 import("//build/config/chrome_build.gni") |
5 import("//build/config/linux/pkg_config.gni") | 6 import("//build/config/linux/pkg_config.gni") |
6 | 7 |
7 # The GYP build supports system harfbuzz for non-official builds when using | 8 # The GYP build supports system harfbuzz for non-official builds when using |
8 # pangoft2 1.31.0 or greater (which pulls it in). | 9 # pangoft2 1.31.0 or greater (which pulls it in). |
9 # TODO(brettw) we can consider doing this as well, although the benefit is | 10 # TODO(brettw) we can consider doing this as well, although the benefit is |
10 # unclear and requires shelling out to a script to check the version. | 11 # unclear and requires shelling out to a script to check the version. |
11 # | 12 # |
12 # ChromeOS uses an up-to-date system one that we have control over, so we | 13 # ChromeOS uses an up-to-date system one that we have control over, so we |
13 # don't want to bloat the binary more by including another copy. | 14 # don't want to bloat the binary more by including another copy. |
14 | 15 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 } | 159 } |
159 if (is_mac) { | 160 if (is_mac) { |
160 sources += [ | 161 sources += [ |
161 "src/hb-coretext.cc", | 162 "src/hb-coretext.cc", |
162 "src/hb-coretext.h", | 163 "src/hb-coretext.h", |
163 ] | 164 ] |
164 defines += [ "HAVE_CORETEXT" ] | 165 defines += [ "HAVE_CORETEXT" ] |
165 } | 166 } |
166 } | 167 } |
167 } | 168 } |
OLD | NEW |