# Copyright (c) 2021 Huawei Device Co., Ltd. # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. import("//build/ohos.gni") ohos_ndk_library("libuv_ndk") { ndk_description_file = "./libuv.ndk.json" min_compact_version = "1" output_name = "uv" output_extension = "so" } ohos_ndk_headers("libuv_header") { dest_dir = "$ndk_headers_out_dir" sources = [ "include/uv_ndk/uv.h" ] } ohos_ndk_headers("libuv_uv_header") { dest_dir = "$ndk_headers_out_dir/uv" sources = [ "include/uv/aix.h", "include/uv/bsd.h", "include/uv/darwin.h", "include/uv/errno.h", "include/uv/linux.h", "include/uv/os390.h", "include/uv/posix.h", "include/uv/stdint-msvc2008.h", "include/uv/sunos.h", "include/uv/threadpool.h", "include/uv/tree.h", "include/uv/unix.h", "include/uv/version.h", "include/uv/win.h", ] }