mirror of
https://github.com/openharmony/third_party_liburing.git
synced 2026-07-01 06:41:58 -04:00
ed8a6f3d91
Signed-off-by: 18721213663 <zhuhongtao12@huawei.com>
65 lines
1.6 KiB
Plaintext
65 lines
1.6 KiB
Plaintext
# Copyright (C) 2023-2024 Huawei Device Co., Ltd.
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import("//build/ohos.gni")
|
|
|
|
src_path = "//third_party/liburing"
|
|
out_dir = root_out_dir + "/third_party_liburing"
|
|
code_dir = out_dir + "/liburing"
|
|
|
|
liburing_source = [
|
|
"src/queue.c",
|
|
"src/register.c",
|
|
"src/setup.c",
|
|
"src/syscall.c",
|
|
]
|
|
|
|
config("liburing_config") {
|
|
visibility = [ ":*" ]
|
|
|
|
include_dirs = [
|
|
"$code_dir",
|
|
"$code_dir/src",
|
|
"$code_dir/src/include",
|
|
"$code_dir/src/include/liburing",
|
|
"$code_dir/src/arch",
|
|
]
|
|
}
|
|
|
|
action("liburing_configure") {
|
|
script = "install.sh"
|
|
args = [
|
|
rebase_path(src_path),
|
|
rebase_path(out_dir),
|
|
]
|
|
inputs = [ src_path ]
|
|
outputs = []
|
|
foreach(src, liburing_source) {
|
|
outputs += [ "$code_dir/" + src ]
|
|
}
|
|
}
|
|
|
|
ohos_shared_library("liburing") {
|
|
configs = [ "//third_party/liburing:liburing_config" ]
|
|
sources = []
|
|
foreach(src, liburing_source) {
|
|
sources += [ "$code_dir/" + src ]
|
|
}
|
|
deps = [ ":liburing_configure" ]
|
|
external_deps = [ "c_utils:utils" ]
|
|
subsystem_name = "thirdparty"
|
|
part_name = "liburing"
|
|
output_name = "liburing"
|
|
license_file = "README.OpenSource"
|
|
}
|