aboutsummaryrefslogtreecommitdiff
path: root/core/fpdfapi/render/Android.bp
blob: 60818b5ed1984cb453bc99ab3e07a7c6589b1f83 (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
cc_library_static {
    name: "libpdfium-render",
    defaults: ["pdfium-core"],

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

    header_libs: [
        "libpdfium-constants",
    ],

    static_libs: [
        "libpdfium-fxcodec",
        "libpdfium-fxcrt",
        "libpdfium-fxge",
        "libpdfium-font",
        "libpdfium-page",
        "libpdfium-parser",
    ],

    exclude_srcs: [
        // is_win
        "cpdf_windowsrenderdevice.cpp",
    ],

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