diff options
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -156,11 +156,25 @@ jumbo_static_library("pdfium") { "third_party:pdfium_base", "third_party:skia_shared", ] + allow_circular_includes_from = [ + "fpdfsdk", + "fpdfsdk/formfiller", + "fpdfsdk/pwl", + ] public_deps = [ "core/fxcrt", ] + if (pdf_enable_xfa) { + deps += [ + "fpdfsdk/fpdfxfa", + "xfa/fxfa", + "xfa/fxfa/parser", + ] + allow_circular_includes_from += [ "fpdfsdk/fpdfxfa" ] + } + if (is_win) { libs += [ "advapi32.lib", |