You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
1012 B

cc_library_shared {
name: "libslog",
vendor: true,
compile_multilib: "64",
srcs: [
"android_slog.cpp",
],
include_dirs: [
"vendor/platform/secure_c/include",
],
header_libs: [
"libuapi_slog_headers",
],
export_header_lib_headers: [
"libuapi_slog_headers",
],
shared_libs: [
"liblog",
"libcutils",
"libuapi_securec",
],
cflags: [
"-fno-common",
],
clang: true,
}
cc_library_shared {
name: "libalog",
vendor: true,
compile_multilib: "64",
srcs: [
"android_slog.cpp",
],
include_dirs: [
"vendor/platform/secure_c/include",
],
header_libs: [
"libuapi_slog_headers",
],
export_header_lib_headers: [
"libuapi_slog_headers",
],
shared_libs: [
"liblog",
"libcutils",
"libuapi_securec",
],
cflags: [
"-fno-common",
"-DLOG_CPP",
],
clang: true,
}