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.
41 lines
703 B
41 lines
703 B
import("//build/ohos.gni")
|
|
import("//vendor/${product_company}/${product_name}/product.gni")
|
|
|
|
ohos_shared_library("libuapi_ir") {
|
|
configs = [ "$public_sdk_config" ]
|
|
subsystem_name = "huanglong_sdk"
|
|
install_images = [
|
|
"vendor",
|
|
]
|
|
output_extension = "so"
|
|
|
|
sources = [
|
|
"ir_s2/iapi_ir.c",
|
|
"ir_s2/mpi_ir.c",
|
|
]
|
|
|
|
include_dirs = [
|
|
"$drv_common_headers",
|
|
"$drv_generic_headers",
|
|
"$drv_ir_headers",
|
|
"$libuapi_ir_headers",
|
|
]
|
|
|
|
deps = [
|
|
"$libuapi_securec",
|
|
"$libuapi_common",
|
|
]
|
|
|
|
cflags = [
|
|
"-DLOG_TAG=\"libuapi_ir\"",
|
|
]
|
|
|
|
public_configs = [
|
|
":libuapi_ir_config",
|
|
]
|
|
}
|
|
|
|
config("libuapi_ir_config") {
|
|
include_dirs = [ "$libuapi_ir_headers" ]
|
|
}
|