aboutsummaryrefslogtreecommitdiff
path: root/core/fxcodec/Android.bp
blob: b5d78d1a72249faedd4c999cb21b81b3ad1a9077 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
cc_library_static {
    name: "libpdfium-fxcodec",
    defaults: ["pdfium-core"],

    visibility: ["//external/pdfium:__subpackages__"],

    static_libs: [
        "libpdfium-lcms2",
        "libpdfium-libopenjpeg2",
        "libpdfium-fxcrt",
        "libpdfium-fxge",
    ],

    shared_libs: [
        "libz",
        "libjpeg",
    ],

    exclude_srcs: [
        // pdf_enable_xfa
        "progressivedecoder.cpp",
        // pdf_enable_xfa_bmp
        "bmp/*",
        // pdf_enable_xfa_gif
        "gif/*",
        // pdf_enable_xfa_png
        "png/*",
        // pdf_enable_xfa_tiff
        "tiff/*",
    ],

    srcs: [
        "**/*.cpp",
    ],
}