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.
50 lines
914 B
50 lines
914 B
import("//build/ohos.gni")
|
|
import("//vendor/${product_company}/${product_name}/product.gni")
|
|
|
|
ohos_shared_library("libuapi_ao") {
|
|
configs = [ "$public_sdk_config" ]
|
|
subsystem_name = "huanglong_sdk"
|
|
install_images = [
|
|
"vendor",
|
|
]
|
|
output_extension = "so"
|
|
|
|
sources = [
|
|
"mpi_ao.c",
|
|
"mpi_vir.c",
|
|
"mpi_lowlatency.c",
|
|
"mpi_ao_effect.c",
|
|
"mpi_plugin.c",
|
|
"iapi_sound.c",
|
|
"mpi_ao_trans.c",
|
|
]
|
|
|
|
include_dirs = [
|
|
"$drv_ao_headers",
|
|
"$drv_audio_headers",
|
|
"$drv_generic_headers",
|
|
"$libuapi_ao_headers",
|
|
"$libuapi_audio_headers",
|
|
"$libuapi_generic_headers",
|
|
"$libuapi_media_headers",
|
|
]
|
|
|
|
deps = [
|
|
"$libuapi_securec",
|
|
"$libuapi_common",
|
|
"$libuapi_memory",
|
|
]
|
|
|
|
cflags = [
|
|
"-DLOG_TAG=\"libuapi_ao\"",
|
|
]
|
|
|
|
public_configs = [
|
|
":libuapi_ao_config",
|
|
]
|
|
}
|
|
|
|
config("libuapi_ao_config") {
|
|
include_dirs = [ "$libuapi_ao_headers" ]
|
|
}
|