1eeee96676
Also move init over to it. Bug: http://b/37991155 Test: builds+boots Change-Id: I5113a9d96a5ce0a0f3bad71134d6cc4f7b41a57e
16 lines
365 B
Text
16 lines
365 B
Text
cc_library {
|
|
name: "libkeyutils",
|
|
cflags: ["-Werror"],
|
|
defaults: ["linux_bionic_supported"],
|
|
export_include_dirs: ["include/"],
|
|
local_include_dirs: ["include/"],
|
|
srcs: ["keyutils.cpp"],
|
|
stl: "none",
|
|
}
|
|
|
|
cc_test {
|
|
name: "libkeyutils-tests",
|
|
cflags: ["-Werror"],
|
|
shared_libs: ["libkeyutils"],
|
|
srcs: ["keyutils_test.cpp"],
|
|
}
|