e439ffc762
We only use it for trivial functions. Replace them and drop the dependency. Bug: 67345547 Test: bullhead builds, boots Test: CtsOsTestCases android.os.cts.StrictModeTest passes Change-Id: I36254962284babdd1a55a32a76dd0dc92d85420c
29 lines
567 B
Text
29 lines
567 B
Text
cc_library_shared {
|
|
name: "libsysutils",
|
|
vendor_available: true,
|
|
vndk: {
|
|
enabled: 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",
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
}
|