blob: 106ff863d6cbe8d9469d3daaf323db03b8e3c7ec [file] [log] [blame]
Dan Willemsen2a904af2018-05-04 18:35:50 -07001// Copyright 2015 The Android Open Source Project
2
Bob Badour4e060082021-02-16 18:59:28 -08003package {
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
Dan Willemsen2a904af2018-05-04 18:35:50 -070020cc_binary {
21 name: "bootctl",
22 srcs: ["bootctl.cpp"],
Alessio Balsinifcba1342019-12-19 13:43:36 +000023
Dan Willemsen2a904af2018-05-04 18:35:50 -070024 cflags: [
25 "-Wall",
26 "-Werror",
27 ],
Alessio Balsinifcba1342019-12-19 13:43:36 +000028
Dan Willemsen2a904af2018-05-04 18:35:50 -070029 shared_libs: [
Alessio Balsinifcba1342019-12-19 13:43:36 +000030 "android.hardware.boot@1.0",
31 "android.hardware.boot@1.1",
Tianjiecc5edd32020-11-25 15:08:38 -080032 "android.hardware.boot@1.2",
Kelvin Zhang7aaa4e62022-06-22 15:11:13 -070033 "android.hardware.boot-V1-ndk",
34 "libboot_control_client",
Dan Willemsen2a904af2018-05-04 18:35:50 -070035 "libhidlbase",
Dan Willemsen2a904af2018-05-04 18:35:50 -070036 "libutils",
Dan Willemsen2a904af2018-05-04 18:35:50 -070037 ],
38}