| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 pdf_use_skia = false | 7 pdf_use_skia = false |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # On Android there's no system FreeType. On Windows and Mac, only a few | 10 # On Android there's no system FreeType. On Windows and Mac, only a few |
| 11 # methods are used from it. | 11 # methods are used from it. |
| 12 bundle_freetype = !is_linux | 12 bundle_freetype = !is_linux |
| 13 } | 13 } |
| 14 | 14 |
| 15 config("pdfium_config") { | 15 config("pdfium_config") { |
| 16 cflags = [] | 16 cflags = [] |
| 17 include_dirs = [ "third_party/freetype/include" ] | 17 include_dirs = [ "third_party/freetype/include" ] |
| 18 defines = [ | 18 defines = [ |
| 19 "_FPDFSDK_LIB", | 19 "_FPDFSDK_LIB", |
| 20 "_NO_GDIPLUS_", # workaround text rendering issues on Windows | 20 "_NO_GDIPLUS_", # workaround text rendering issues on Windows |
| 21 "OPJ_STATIC", | 21 "OPJ_STATIC", |
| 22 "PNG_PREFIX", | 22 "PNG_PREFIX", |
| 23 "PNGPREFIX_H", | 23 "PNGPREFIX_H", |
| 24 "PNG_USE_READ_MACROS", | 24 "PNG_USE_READ_MACROS", |
| 25 "V8_DEPRECATION_WARNINGS", |
| 25 ] | 26 ] |
| 26 | 27 |
| 27 if (pdf_use_skia) { | 28 if (pdf_use_skia) { |
| 28 defines += [ "_SKIA_SUPPORT_" ] | 29 defines += [ "_SKIA_SUPPORT_" ] |
| 29 } | 30 } |
| 30 | 31 |
| 31 if (is_linux) { | 32 if (is_linux) { |
| 32 if (cpu_arch == "x64") { | 33 if (cpu_arch == "x64") { |
| 33 defines += [ "_FX_CPU_=_FX_X64_" ] | 34 defines += [ "_FX_CPU_=_FX_X64_" ] |
| 34 cflags += [ "-fPIC" ] | 35 cflags += [ "-fPIC" ] |
| (...skipping 1562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1597 ":pdfium" | 1598 ":pdfium" |
| 1598 ] | 1599 ] |
| 1599 include_dirs = [ | 1600 include_dirs = [ |
| 1600 ".", | 1601 ".", |
| 1601 "//v8", | 1602 "//v8", |
| 1602 "//v8/include", | 1603 "//v8/include", |
| 1603 ] | 1604 ] |
| 1604 configs -= [ "//build/config/compiler:chromium_code" ] | 1605 configs -= [ "//build/config/compiler:chromium_code" ] |
| 1605 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] | 1606 configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ] |
| 1606 } | 1607 } |
| OLD | NEW |