summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorFelix Herrmann <fherrmann@de.adit-jv.com>2020-01-10 16:03:07 +0100
committerSaya Sugiura <39760799+ssugiura@users.noreply.github.com>2020-07-06 10:04:07 +0900
commitc79ac621dbb7e774c90079ee1682857b4b0a2cfa (patch)
treebecb54377e60609fe71524940f88830043be1ee2 /Android.bp
parentabb804937568b4fdf8e9c375b7ec2819c50f5eb9 (diff)
downloadDLT-daemon-c79ac621dbb7e774c90079ee1682857b4b0a2cfa.tar.gz
android logd forwarder
Signed-off-by: Felix Herrmann <fherrmann@de.adit-jv.com>
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp30
1 files changed, 28 insertions, 2 deletions
diff --git a/Android.bp b/Android.bp
index b50115a..54ef69e 100644
--- a/Android.bp
+++ b/Android.bp
@@ -52,11 +52,9 @@ cc_binary {
name: "dlt-daemon",
defaults: ["dlt_defaults"],
- /*
init_rc: [
"src/daemon/dlt-daemon.rc",
],
- */
local_include_dirs: [
"src/daemon",
@@ -151,4 +149,32 @@ cc_binary {
],
}
+cc_binary {
+
+ name: "dlt-logd-converter",
+ vendor: true,
+
+ srcs: [
+ "src/android/dlt-logd-converter.cpp",
+ ],
+ init_rc: [
+ "src/android/dlt-logd-converter.rc",
+ ],
+
+ cflags: [
+ "-Wall",
+ "-Wextra",
+ "-Wpedantic",
+ "-std=c++14",
+
+ ],
+ shared_libs: [
+ "libdlt",
+ "liblog",
+ ],
+ include_dirs: [
+ "system/core/include",
+ ],
+}
+
// vim: ft=python