40 lines
839 B
Plaintext
40 lines
839 B
Plaintext
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "external_pdfium_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-BSD
|
|
default_applicable_licenses: ["external_pdfium_license"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libpdfium-fxcrt",
|
|
defaults: ["pdfium-core"],
|
|
|
|
visibility: ["//external/pdfium:__subpackages__"],
|
|
|
|
export_shared_lib_headers: [
|
|
"libicu",
|
|
],
|
|
|
|
static_libs: [
|
|
"libpdfium-third_party-base",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libicu",
|
|
],
|
|
|
|
exclude_srcs: [
|
|
// is_win
|
|
"cfx_fileaccess_windows.cpp",
|
|
// pdf_enable_xfa
|
|
"cfx_memorystream.cpp",
|
|
],
|
|
|
|
srcs: [
|
|
"*.cpp",
|
|
"xml/*.cpp",
|
|
],
|
|
}
|