summaryrefslogtreecommitdiff
path: root/Android.bp
diff options
context:
space:
mode:
authorsebastienr <sebastien.raillet@marelli.com>2023-03-14 14:45:11 +0100
committerGitHub <noreply@github.com>2023-03-14 14:45:11 +0100
commit4149df65ca6672236b9b4662c9d22271b4ada519 (patch)
treef2e6cf61f28be1e6239d860d1be71fff022dbde2 /Android.bp
parent363d433a5dac141020cef4f698f60644fe4a202c (diff)
downloadDLT-daemon-4149df65ca6672236b9b4662c9d22271b4ada519.tar.gz
dlt-logd-converter: fixes android 12 compilation (#445)v2.18.9-alpha
* Since android 12 release (and the introduction of this commit https://chromium.googlesource.com/aosp/platform/system/ logging/+/b674866203f05957b2ac5db94c3c0fe3d1d36793), the define ANDROID_LOG_RDONLY and friends have been removed (see the commit for the explanation). Therefore, dlt-logd-converter can't compile anymore since this version. * ANDROID_LOG_RDONLY was a define on O_RDONLY. O_RDONLY is now used to allow the compilation on android 12 as well as previous versions * <log/logprint.h> include is removed because we aren't using any API from this file and moreover, this file shouldn't be included from vendor application (not part of public API) * Direct include on "system/core/include" inside Android.bp is removed because it was previously used to find <log/logprint.h>. This should be avoided. We should keep android build system providing right headers path for us :) Signed-off-by: Sébastien RAILLET <sebastien.raillet@gmail.com>
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp3
1 files changed, 0 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index 0b1b238..ebd3acc 100644
--- a/Android.bp
+++ b/Android.bp
@@ -194,9 +194,6 @@ cc_binary {
"libdlt",
"liblog",
],
- include_dirs: [
- "system/core/include",
- ],
}
// vim: ft=python