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.
42 lines
744 B
42 lines
744 B
4 months ago
|
cc_library_shared {
|
||
|
name: "libuapi_wdg",
|
||
|
proprietary: true,
|
||
|
compile_multilib: "both",
|
||
|
|
||
|
srcs: [
|
||
|
"*.c",
|
||
|
],
|
||
|
|
||
|
include_dirs: [
|
||
|
"vendor/platform/secure_c/include",
|
||
|
],
|
||
|
|
||
|
header_libs: [
|
||
|
"drv_generic_headers",
|
||
|
"drv_wdg_headers",
|
||
|
"libuapi_wdg_headers",
|
||
|
],
|
||
|
|
||
|
export_header_lib_headers: [
|
||
|
"libuapi_wdg_headers",
|
||
|
],
|
||
|
|
||
|
shared_libs: [
|
||
|
"libuapi_securec",
|
||
|
"libuapi_common",
|
||
|
],
|
||
|
|
||
|
cflags: [
|
||
|
"-DLOG_TAG=\"libuapi_wdg\"",
|
||
|
"-DCONFIG_SOCT_LOG_SUPPORT",
|
||
|
"-Wformat",
|
||
|
"-Wlong-long",
|
||
|
"-Wpointer-arith",
|
||
|
"-fstack-protector-all",
|
||
|
"-fPIC",
|
||
|
"-Werror",
|
||
|
"-Wall",
|
||
|
],
|
||
|
clang: true,
|
||
|
}
|