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.
29 lines
442 B
29 lines
442 B
import("//build/ohos.gni")
|
|
import("//vendor/${product_company}/${product_name}/product.gni")
|
|
|
|
ohos_shared_library("libslog") {
|
|
configs = [ "$public_sdk_config" ]
|
|
subsystem_name = "huanglong_sdk"
|
|
install_images = [
|
|
"vendor",
|
|
]
|
|
output_extension = "so"
|
|
|
|
sources = [
|
|
"tvos_slog.c",
|
|
]
|
|
|
|
include_dirs = [
|
|
"$libuapi_slog_headers",
|
|
|
|
]
|
|
|
|
deps = [
|
|
"$libuapi_securec",
|
|
]
|
|
|
|
cflags = [
|
|
"-DLOG_TAG=\"aislog\"",
|
|
]
|
|
}
|