You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
116 lines
2.6 KiB
116 lines
2.6 KiB
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-Artistic
|
|
// SPDX-license-identifier-BSD
|
|
// SPDX-license-identifier-FTL
|
|
// SPDX-license-identifier-MIT
|
|
// SPDX-license-identifier-Zlib
|
|
// SPDX-license-identifier-libtiff
|
|
// legacy_unencumbered
|
|
default_applicable_licenses: ["external_pdfium_license"],
|
|
}
|
|
|
|
cc_defaults {
|
|
name: "pdfium-third-party",
|
|
defaults: [
|
|
"pdfium-common"
|
|
],
|
|
visibility: ["//external/pdfium:__subpackages__"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libpdfium-third_party-base",
|
|
defaults: ["pdfium-third-party"],
|
|
visibility: ["//external/pdfium:__subpackages__"],
|
|
|
|
arch: {
|
|
arm: {
|
|
cflags: [
|
|
"-DARCH_CPU_32_BITS",
|
|
"-DARCH_CPU_ARMEL",
|
|
],
|
|
},
|
|
arm64: {
|
|
cflags: [
|
|
"-DARCH_CPU_64_BITS",
|
|
"-DARCH_CPU_ARM64",
|
|
],
|
|
},
|
|
x86: {
|
|
cflags: [
|
|
"-DARCH_CPU_32_BITS",
|
|
"-DARCH_CPU_X86",
|
|
],
|
|
},
|
|
x86_64: {
|
|
cflags: [
|
|
"-DARCH_CPU_64_BITS",
|
|
"-DARCH_CPU_X86_64",
|
|
],
|
|
},
|
|
},
|
|
|
|
srcs: [
|
|
"base/debug/*.cc",
|
|
"base/allocator/partition_allocator/*.cc",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libpdfium-lcms2",
|
|
defaults: ["pdfium-third-party"],
|
|
|
|
cflags: [
|
|
// cmslut.cc is sloppy with aggregate initialization. Version 2.7 of this
|
|
// library doesn't appear to have this problem.
|
|
"-Wno-missing-braces",
|
|
|
|
// FindPrev() in cmsplugin.c is unused.
|
|
"-Wno-unused-function",
|
|
],
|
|
|
|
srcs: [
|
|
"lcms/src/*.c",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libpdfium-libopenjpeg2",
|
|
defaults: ["pdfium-third-party"],
|
|
visibility: ["//cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-8332"],
|
|
|
|
exclude_srcs: [
|
|
"libopenjpeg20/t1_generate_luts.c",
|
|
],
|
|
|
|
srcs: [
|
|
"libopenjpeg20/*.c",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libpdfium-agg",
|
|
defaults: ["pdfium-third-party"],
|
|
|
|
cflags: [
|
|
// calc_butt_cap() in agg_vcgen_stroke.cpp is unused.
|
|
"-Wno-unused-function",
|
|
],
|
|
|
|
srcs: [
|
|
"agg23/*.cpp",
|
|
]
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libpdfium-skia_shared",
|
|
defaults: ["pdfium-third-party"],
|
|
|
|
srcs: [
|
|
"skia_shared/*.cpp",
|
|
],
|
|
}
|