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.
46 lines
833 B
46 lines
833 B
import("//build/ohos.gni")
|
|
import("//vendor/${product_company}/${product_name}/product.gni")
|
|
|
|
ohos_shared_library("libuapi_venc") {
|
|
configs = [ "$public_sdk_config" ]
|
|
subsystem_name = "huanglong_sdk"
|
|
install_images = [
|
|
"vendor",
|
|
]
|
|
output_extension = "so"
|
|
|
|
sources = [
|
|
"iapi_venc.c",
|
|
"mpi_venc.c",
|
|
"venc_convert.c",
|
|
]
|
|
|
|
include_dirs = [
|
|
"$drv_generic_headers",
|
|
"$drv_venc_headers",
|
|
"$drv_video_headers",
|
|
"$libuapi_venc_headers",
|
|
"$libuapi_media_headers",
|
|
"$libuapi_video_headers",
|
|
]
|
|
|
|
deps = [
|
|
"$libuapi_securec",
|
|
"$libuapi_common",
|
|
"$libuapi_memory",
|
|
"$libuapi_ssm",
|
|
]
|
|
|
|
cflags = [
|
|
"-DLOG_TAG=\"libuapi_venc\"",
|
|
]
|
|
|
|
public_configs = [
|
|
":libuapi_venc_config",
|
|
]
|
|
}
|
|
|
|
config("libuapi_venc_config") {
|
|
include_dirs = [ "$libuapi_venc_headers" ]
|
|
}
|