summaryrefslogtreecommitdiff
path: root/Android.bp
blob: 4b2ecdc612f7097a33f9a57d643b036ff9834a08 (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
40
41
42
43
44
45
46
47
48
49
50
51
soong_namespace {
}

package {
    default_applicable_licenses: ["hardware_qcom_bootctrl_license"],
}

// Added automatically by a large-scale-change
// See: http://go/android-license-faq
license {
    name: "hardware_qcom_bootctrl_license",
    visibility: [":__subpackages__"],
    license_kinds: [
        "SPDX-license-identifier-BSD",
    ],
    license_text: [
        "NOTICE",
    ],
}

filegroup {
    name: "bootctrl_hal_src",
    srcs: [
        "boot_control.cpp",
    ],
}

cc_defaults {
    name: "bootctrl_hal_defaults",
    proprietary: true,
    recovery_available: true,
    header_libs: [
        "libhardware_headers",
        "libsystem_headers",
    ],
    shared_libs: [
        "libcutils",
        "liblog",
        "libz",
    ],
    owner: "qti",
    relative_install_path: "hw",
    cflags: [
        "-Wall",
        "-Werror",
    ],
    srcs: [
        ":bootctrl_hal_src",
    ],

}