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.
52 lines
1.0 KiB
52 lines
1.0 KiB
/*
|
|
* Copyright (c) Hisilicon Technologies Co., Ltd.. 2021-2021. All rights reserved.
|
|
* Description: the Android.bp for procdaemon.
|
|
* Create: 2022-11-14
|
|
*/
|
|
|
|
// #################### compile the procdaemon bin #####################
|
|
cc_binary {
|
|
name:"procd",
|
|
|
|
allow_undefined_symbols:true,
|
|
|
|
cppflags:[
|
|
"-std=gnu++11",
|
|
"-W",
|
|
"-Wall",
|
|
"-Wextra",
|
|
"-Wunused",
|
|
"-Wno-unused-parameter",
|
|
"-DCONFIG_SOCT_LOG_SUPPORT",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libxml2",
|
|
"libuapi_securec",
|
|
"libdftevent",
|
|
"liblog",
|
|
"libuapi_common",
|
|
],
|
|
|
|
local_include_dirs: [
|
|
"include",
|
|
],
|
|
|
|
include_dirs: [
|
|
"external/libxml2/include",
|
|
"vendor/platform/secure_c/include",
|
|
],
|
|
|
|
header_libs: [
|
|
"libdftevent_headers",
|
|
"drv_generic_headers",
|
|
"drv_common_headers",
|
|
],
|
|
|
|
srcs:[
|
|
"procd.c",
|
|
"util/*.c"
|
|
],
|
|
vendor:true
|
|
}
|