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