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.
102 lines
2.1 KiB
102 lines
2.1 KiB
import("//build/ohos.gni")
|
|
import("//vendor/${product_company}/${product_name}/product.gni")
|
|
|
|
ohos_executable("sample_pmoc") {
|
|
configs = [ "$public_sdk_config" ]
|
|
install_enable = true
|
|
subsystem_name = "huanglong_sdk"
|
|
install_images = [
|
|
"vendor",
|
|
]
|
|
|
|
include_dirs = [
|
|
"$drv_generic_headers",
|
|
"$drv_gpio_headers",
|
|
"$drv_hdmitx_headers",
|
|
"$drv_ir_headers",
|
|
"$drv_ao_headers",
|
|
"$drv_audio_headers",
|
|
"$drv_common_headers",
|
|
"$drv_memc_headers",
|
|
"$drv_panel_headers",
|
|
"$drv_pdm_headers",
|
|
"$drv_spi_headers",
|
|
"$drv_video_headers",
|
|
"$drv_vo_headers",
|
|
"$drv_pmoc_headers",
|
|
"$libuapi_pqhdr",
|
|
"$libuapi_pmoc_headers",
|
|
"$libuapi_pdm_headers",
|
|
"$libuapi_cec_headers",
|
|
"$libuapi_video_headers",
|
|
"$libdftevent_headers",
|
|
]
|
|
|
|
deps = [
|
|
"$libuapi_flash",
|
|
"$libuapi_panel",
|
|
"$libuapi_vo",
|
|
"$libuapi_memory",
|
|
"$libuapi_securec",
|
|
"$libuapi_common",
|
|
"$libdftevent",
|
|
"$libuapi_ir",
|
|
"$libuapi_gpio",
|
|
"$libuapi_pdm",
|
|
"$libuapi_pmoc",
|
|
]
|
|
|
|
sources = [
|
|
"sample_pmoc.c",
|
|
]
|
|
}
|
|
|
|
ohos_executable("sample_active_standby") {
|
|
configs = [ "$public_sdk_config" ]
|
|
install_enable = true
|
|
subsystem_name = "huanglong_sdk"
|
|
install_images = [
|
|
"vendor",
|
|
]
|
|
|
|
include_dirs = [
|
|
"$drv_generic_headers",
|
|
"$drv_gpio_headers",
|
|
"$drv_hdmitx_headers",
|
|
"$drv_ir_headers",
|
|
"$drv_ao_headers",
|
|
"$drv_audio_headers",
|
|
"$drv_common_headers",
|
|
"$drv_memc_headers",
|
|
"$drv_panel_headers",
|
|
"$drv_pdm_headers",
|
|
"$drv_spi_headers",
|
|
"$drv_video_headers",
|
|
"$drv_vo_headers",
|
|
"$drv_pmoc_headers",
|
|
"$libuapi_pqhdr",
|
|
"$libuapi_pmoc_headers",
|
|
"$libuapi_pdm_headers",
|
|
"$libuapi_cec_headers",
|
|
"$libuapi_video_headers",
|
|
"$libdftevent_headers",
|
|
]
|
|
|
|
deps = [
|
|
"$libuapi_flash",
|
|
"$libuapi_panel",
|
|
"$libuapi_vo",
|
|
"$libuapi_memory",
|
|
"$libuapi_securec",
|
|
"$libuapi_common",
|
|
"$libdftevent",
|
|
"$libuapi_ir",
|
|
"$libuapi_gpio",
|
|
"$libuapi_pdm",
|
|
"$libuapi_pmoc",
|
|
]
|
|
|
|
sources = [
|
|
"sample_active_standby.c",
|
|
]
|
|
} |