xref: /aosp_15_r20/system/extras/bootctl/Android.bp (revision 288bf5226967eb3dac5cce6c939ccc2a7f2b4fe5)
1// Copyright 2015 The Android Open Source Project
2
3package {
4    default_applicable_licenses: ["system_extras_bootctl_license"],
5}
6
7// Added automatically by a large-scale-change
8// See: http://go/android-license-faq
9license {
10    name: "system_extras_bootctl_license",
11    visibility: [":__subpackages__"],
12    license_kinds: [
13        "SPDX-license-identifier-Apache-2.0",
14    ],
15    license_text: [
16        "NOTICE",
17    ],
18}
19
20cc_binary {
21    name: "bootctl",
22    srcs: ["bootctl.cpp"],
23
24    cflags: [
25        "-Wall",
26        "-Werror",
27    ],
28
29    shared_libs: [
30        "[email protected]",
31        "[email protected]",
32        "[email protected]",
33        "android.hardware.boot-V1-ndk",
34        "libboot_control_client",
35        "libhidlbase",
36        "libutils",
37    ],
38}
39