ad8cf52c4c
As of VNDK deprecation, any libraries that defines vndk is no longer valid anymore. This change removes all VNDK definition(s) from modules which was VNDK. Any former VNDK-SP libraries will be marked as double-loadable, so it can keep be able to be referenced by LLNDK libraries. Bug: 328994089 Test: AOSP CF build succeeded Change-Id: I1662f16e5e446bb28167b0bb278cd63997267d2a
65 lines
1.2 KiB
Text
65 lines
1.2 KiB
Text
package {
|
|
default_applicable_licenses: ["Android-Apache-2.0"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libsysutils",
|
|
vendor_available: true,
|
|
|
|
srcs: [
|
|
"src/SocketListener.cpp",
|
|
"src/FrameworkListener.cpp",
|
|
"src/NetlinkListener.cpp",
|
|
"src/NetlinkEvent.cpp",
|
|
"src/FrameworkCommand.cpp",
|
|
"src/SocketClient.cpp",
|
|
"src/ServiceManager.cpp",
|
|
],
|
|
|
|
logtags: ["EventLogTags.logtags"],
|
|
|
|
cflags: ["-Werror"],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"liblog",
|
|
],
|
|
|
|
header_libs: [
|
|
"bpf_headers",
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
tidy: true,
|
|
tidy_checks: [
|
|
"-*",
|
|
"cert-*",
|
|
"clang-analyzer-security*",
|
|
"android-*",
|
|
],
|
|
tidy_checks_as_errors: [
|
|
"cert-*",
|
|
"clang-analyzer-security*",
|
|
"android-*",
|
|
],
|
|
apex_available: [
|
|
"//apex_available:anyapex",
|
|
"//apex_available:platform",
|
|
],
|
|
min_sdk_version: "apex_inherit",
|
|
}
|
|
|
|
cc_test {
|
|
name: "libsysutils_tests",
|
|
test_suites: ["device-tests"],
|
|
srcs: [
|
|
"src/SocketListener_test.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libsysutils",
|
|
],
|
|
}
|