summaryrefslogtreecommitdiff
path: root/cmds/cmd/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/cmd/Android.bp')
-rw-r--r--cmds/cmd/Android.bp18
1 files changed, 18 insertions, 0 deletions
diff --git a/cmds/cmd/Android.bp b/cmds/cmd/Android.bp
new file mode 100644
index 0000000000..d91184a201
--- /dev/null
+++ b/cmds/cmd/Android.bp
@@ -0,0 +1,18 @@
+cc_binary {
+ name: "cmd",
+
+ srcs: ["cmd.cpp"],
+
+ shared_libs: [
+ "libutils",
+ "liblog",
+ "libselinux",
+ "libbinder",
+ ],
+
+ cflags: [
+ "-Wall",
+ "-Werror",
+ "-DXP_UNIX",
+ ],
+}