summaryrefslogtreecommitdiff
path: root/gralloc4/service/aidl/Android.bp
blob: a3d7a87a610fcddc86bf5c20b8e83dfc6f3aaa46 (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
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

cc_binary {
    name: "android.hardware.graphics.allocator-V1-service",
    proprietary: true,
    relative_install_path: "hw",
    srcs: [
        "service.cpp",
    ],
    init_rc: [
        "android.hardware.graphics.allocator-aidl-service.rc",
    ],
    vintf_fragments: ["manifest_gralloc_aidl.xml"],
    header_libs: [
        "libgralloc_headers",
    ],
    shared_libs: [
        "android.hardware.graphics.allocator-V1-ndk",
        "android.hardware.graphics.allocator-aidl-impl",
        "libbinder_ndk",
        "liblog",
        "libutils",
    ],
    static_libs: [
        "libaidlcommonsupport",
    ],
    required: [
        "android.hardware.graphics.allocator-aidl-impl",
    ],
}