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
1013 B
65 lines
1013 B
4 months ago
|
cc_library_shared {
|
||
|
name: "libdftevent",
|
||
|
|
||
|
vendor_available: true,
|
||
|
|
||
|
compile_multilib: "both",
|
||
|
|
||
|
cflags: [
|
||
|
"-Wlong-long",
|
||
|
"-Wformat",
|
||
|
"-Wpointer-arith",
|
||
|
],
|
||
|
ldflags: ["-s"],
|
||
|
|
||
|
srcs: [
|
||
|
"dft_event.c",
|
||
|
"dft_event_handle.c",
|
||
|
],
|
||
|
|
||
|
include_dirs: [
|
||
|
"vendor/platform/secure_c/include",
|
||
|
],
|
||
|
|
||
|
header_libs: [
|
||
|
"libdftevent_headers",
|
||
|
],
|
||
|
|
||
|
export_header_lib_headers: [
|
||
|
"libdftevent_headers",
|
||
|
],
|
||
|
|
||
|
shared_libs: [
|
||
|
"liblog",
|
||
|
"libcutils",
|
||
|
"libdl",
|
||
|
"libutils",
|
||
|
"libuapi_securec",
|
||
|
],
|
||
|
}
|
||
|
|
||
|
cc_binary {
|
||
|
name: "sample_time_package_gen",
|
||
|
|
||
|
srcs: [
|
||
|
"sample_time_package_gen.c",
|
||
|
],
|
||
|
|
||
|
include_dirs: [
|
||
|
"vendor/platform/secure_c/include",
|
||
|
],
|
||
|
|
||
|
header_libs: [
|
||
|
"libdftevent_headers",
|
||
|
],
|
||
|
|
||
|
export_header_lib_headers: [
|
||
|
"libdftevent_headers",
|
||
|
],
|
||
|
|
||
|
shared_libs: [
|
||
|
"libdftevent",
|
||
|
"libuapi_securec",
|
||
|
],
|
||
|
}
|