xref: /aosp_15_r20/external/pdfium/core/fpdfapi/page/Android.bp (revision 3ac0a46f773bac49fa9476ec2b1cf3f8da5ec3a4)
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-page",
12    defaults: ["pdfium-core"],
13
14    visibility: ["//external/pdfium:__subpackages__"],
15
16    exclude_srcs: [
17        "test_with_page_module.cpp",
18    ],
19
20    static_libs: [
21        "libpdfium-constants",
22        "libpdfium-fxcodec",
23        "libpdfium-fxcrt",
24        "libpdfium-fxge",
25        "libpdfium-font",
26        "libpdfium-parser",
27    ],
28
29    srcs: [
30        "*.cpp",
31    ],
32}
33