1// Copyright 2015 The Android Open Source Project
2
3cc_binary {
4 name: "bootctl",
5 srcs: ["bootctl.cpp"],
6
7 cflags: [
8 "-Wall",
9 "-Werror",
10 ],
11
12 shared_libs: [
13 "android.hardware.boot@1.0",
14 "android.hardware.boot@1.1",
15 "libhidlbase",
16 "libutils",
17 ],
18}
19