summaryrefslogtreecommitdiffstats
path: root/Android.bp
blob: fcbe24b37340dc9596f69720d0845da6be3cdbb1 (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
sourceFiles = ["cryptfs_hw.cpp"]

commonSharedLibraries = [
    "libcutils",
    "libutils",
    "libdl",
    "libhardware",
    "liblog",
    "libhwbinder",
    "libhidlbase",
    "libhidltransport",
    "libbinder",
    "vendor.qti.hardware.cryptfshw@1.0",
]

cc_library_shared {
    name: "libcryptfs_hw",
    header_libs: ["generated_kernel_headers",
                  "libhardware_headers",
                  "libcryptfshw_hidl_headers",],
    srcs: sourceFiles,
    shared_libs: commonSharedLibraries,

    owner: "qti",
    product_specific: true,
}

cc_library_headers {
    name: "libcryptfs_hw_headers",
    export_include_dirs: ["."],
}