1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "external_pdfium_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-BSD 7 default_applicable_licenses: ["external_pdfium_license"], 8} 9 10cc_library_static { 11 name: "libpdfium-fpdfsdk", 12 defaults: ["pdfium-core"], 13 14 visibility: ["//external/pdfium:__subpackages__"], 15 16 static_libs: [ 17 "libpdfium-constants", 18 "libpdfium-fdrm", 19 "libpdfium-edit", 20 "libpdfium-font", 21 "libpdfium-page", 22 "libpdfium-parser", 23 "libpdfium-render", 24 "libpdfium-fpdfdoc", 25 "libpdfium-fpdftext", 26 "libpdfium-fxcrt", 27 "libpdfium-fxge", 28 "libpdfium-fxjs", 29 "libpdfium-formfiller", 30 "libpdfium-pwl", 31 ], 32 33 srcs: [ 34 "*.cpp", 35 ], 36 37 include_dirs: [ 38 "external/freetype/include", 39 "external/freetype/include/freetype", 40 ], 41} 42