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

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

    export_shared_lib_headers: [
        "libandroidicu",
    ],

    static_libs: [
        "libpdfium-third_party-base",
    ],

    shared_libs: [
        "libandroidicu",
    ],

    exclude_srcs: [
        // is_win
        "cfx_fileaccess_windows.cpp",
        // pdf_enable_xfa
        "cfx_memorystream.cpp",
    ],

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