aboutsummaryrefslogtreecommitdiff
path: root/core/fxcrt/Android.bp
blob: 5f6cb41059c12a0c703c4a0316c1c295441a1acc (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
36
37
38
39
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-BSD
    default_applicable_licenses: ["external_pdfium_license"],
}

cc_library_static {
    name: "libpdfium-fxcrt",
    defaults: ["pdfium-core"],

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

    export_shared_lib_headers: [
        "libicu",
    ],

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

    shared_libs: [
        "libicu",
    ],

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

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