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.
31 lines
579 B
31 lines
579 B
import("//build/ohos.gni")
|
|
import("//vendor/${product_company}/${product_name}/product.gni")
|
|
|
|
ohos_executable("pdmtool") {
|
|
configs = [ "$public_sdk_config" ]
|
|
install_enable = true
|
|
subsystem_name = "huanglong_sdk"
|
|
install_images = [
|
|
"vendor",
|
|
]
|
|
|
|
include_dirs = [
|
|
"$drv_generic_headers",
|
|
"$libuapi_video_headers",
|
|
"$libuapi_cec_headers",
|
|
"$sdk_dir/vendor/platform/secure_c/include",
|
|
]
|
|
|
|
deps = [
|
|
"$libuapi_common",
|
|
"$libuapi_pdm",
|
|
"$libuapi_securec",
|
|
"$libuapi_vo",
|
|
"$libuapi_panel",
|
|
]
|
|
|
|
sources = [
|
|
"pdmtool.c",
|
|
]
|
|
}
|