| Index: BUILD.gn
|
| diff --git a/BUILD.gn b/BUILD.gn
|
| index cf07c33d8d611bb088bc3e2ba5478884850bc890..23e9f9a8ff200abfa0b72ac1377830af8f2dc809 100644
|
| --- a/BUILD.gn
|
| +++ b/BUILD.gn
|
| @@ -9,7 +9,7 @@ pdf_use_skia = false
|
| declare_args() {
|
| # On Android there's no system FreeType. On Windows and Mac, only a few
|
| # methods are used from it.
|
| - bundle_freetype = !is_linux
|
| + pdfium_bundle_freetype = !is_linux
|
| }
|
|
|
| config("pdfium_config") {
|
| @@ -125,8 +125,8 @@ static_library("pdfium") {
|
| libs += [ "AppKit.framework", "CoreFoundation.framework" ]
|
| }
|
|
|
| - if (bundle_freetype) {
|
| - deps += [ "third_party:freetype" ]
|
| + if (pdfium_bundle_freetype) {
|
| + deps += [ "third_party:fx_freetype" ]
|
| } else {
|
| libs += [ "freetype" ]
|
| }
|
|
|