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.
51 lines
937 B
51 lines
937 B
4 months ago
|
import("//build/ohos.gni")
|
||
|
import("//vendor/${product_company}/${product_name}/product.gni")
|
||
|
|
||
|
ohos_shared_library("libuapi_vo") {
|
||
|
configs = [ "$public_sdk_config" ]
|
||
|
subsystem_name = "huanglong_sdk"
|
||
|
install_images = [
|
||
|
"vendor",
|
||
|
]
|
||
|
output_extension = "so"
|
||
|
|
||
|
sources = [
|
||
|
"iapi_disp.c",
|
||
|
"iapi_win.c",
|
||
|
"mpi_disp.c",
|
||
|
"mpi_disp_tran.c",
|
||
|
"mpi_win.c",
|
||
|
]
|
||
|
|
||
|
include_dirs = [
|
||
|
"$drv_generic_headers",
|
||
|
"$drv_memc_headers",
|
||
|
"$drv_rm_headers",
|
||
|
"$drv_video_headers",
|
||
|
"$drv_vo_headers",
|
||
|
"$drv_common_headers",
|
||
|
"$libuapi_common_headers",
|
||
|
"$libuapi_vo_headers",
|
||
|
"$libuapi_media_headers",
|
||
|
"$libuapi_video_headers",
|
||
|
]
|
||
|
|
||
|
deps = [
|
||
|
"$libuapi_rm",
|
||
|
"$libuapi_common",
|
||
|
"$libuapi_securec",
|
||
|
]
|
||
|
|
||
|
cflags = [
|
||
|
"-DLOG_TAG=\"libuapi_vo\"",
|
||
|
]
|
||
|
|
||
|
public_configs = [
|
||
|
":libuapi_vo_config",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
config("libuapi_vo_config") {
|
||
|
include_dirs = [ "$libuapi_vo_headers" ]
|
||
|
}
|