summaryrefslogtreecommitdiff
path: root/bootctl/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'bootctl/Android.bp')
-rw-r--r--bootctl/Android.bp17
1 files changed, 17 insertions, 0 deletions
diff --git a/bootctl/Android.bp b/bootctl/Android.bp
new file mode 100644
index 00000000..a58723c0
--- /dev/null
+++ b/bootctl/Android.bp
@@ -0,0 +1,17 @@
+// Copyright 2015 The Android Open Source Project
+
+cc_binary {
+ name: "bootctl",
+ srcs: ["bootctl.cpp"],
+ cflags: [
+ "-Wall",
+ "-Werror",
+ ],
+ shared_libs: [
+ "libhidlbase",
+ "libhidltransport",
+ "libhwbinder",
+ "libutils",
+ "android.hardware.boot@1.0",
+ ],
+}