summaryrefslogtreecommitdiff
path: root/1.1/libboot_control_qti/Android.bp
blob: 10cef14b21040b1327c908654cf4767030a0c5fe (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
filegroup {
    name: "libboot_control_qti_src",
    srcs: ["libboot_control_qti.cpp"],
}

cc_library_headers {
    name: "libboot_control_qti_headers",
    vendor: true,
    recovery_available: true,
    export_include_dirs: ["."],
}

cc_defaults {
    name: "libboot_control_qti_defaults",
    vendor: true,
    recovery_available: true,
    shared_libs: [
        "android.hardware.boot@1.1",
        "libbase",
        "libcutils",
        "liblog",
        "libz",
    ],
    static_libs: [
        "libboot_control",
        "libbootloader_message_vendor",
        "libfstab",
    ],
    owner: "qti",
    cflags: [
        "-Wall",
        "-Werror",
    ],
    srcs: [
        ":libboot_control_qti_src",
    ],
    header_libs: ["libboot_control_qti_headers"],
}