summaryrefslogtreecommitdiffstats
path: root/watchdogd/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'watchdogd/Android.bp')
-rw-r--r--watchdogd/Android.bp14
1 files changed, 14 insertions, 0 deletions
diff --git a/watchdogd/Android.bp b/watchdogd/Android.bp
new file mode 100644
index 000000000..0fbc33cd2
--- /dev/null
+++ b/watchdogd/Android.bp
@@ -0,0 +1,14 @@
+cc_binary {
+ name: "watchdogd",
+ recovery_available: true,
+ srcs: ["watchdogd.cpp"],
+ cflags: [
+ "-Wall",
+ "-Wextra",
+ "-Werror",
+ ],
+ shared_libs: ["libbase"],
+ sanitize: {
+ misc_undefined: ["signed-integer-overflow"],
+ },
+}