# Copyright (c) 2021 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") import("//foundation/arkui/ace_engine/ace_config.gni") import("napi.gni") config("ace_napi_config") { include_dirs = [ ".", "interfaces/inner_api", "interfaces/kits", "native_engine", "native_engine/impl/ark", "//third_party/libuv/include", "//third_party/node/src", ] defines = [] cflags_cc = [] if (is_mingw || is_mac || is_linux) { defines += [ "PREVIEW" ] } if (current_os == "ohos" && current_cpu == "x86_64") { defines += [ "SIMULATOR" ] } if (is_ohos) { defines += [ "OHOS_PLATFORM" ] } else if (is_mingw) { defines += [ "WINDOWS_PLATFORM" ] cflags_cc += [ "-std=c++17" ] } else if (is_mac) { defines += [ "MAC_PLATFORM" ] } else if (is_linux) { defines += [ "LINUX_PLATFORM" ] cflags_cc += [ "-std=c++17" ] } else if (is_arkui_x && target_os == "ios") { defines += [ "IOS_PLATFORM" ] include_dirs += [ "//arkcompiler/ets_runtime" ] } else if (is_arkui_x && target_os == "android") { defines += [ "ANDROID_PLATFORM" ] include_dirs += [ "//arkcompiler/ets_runtime" ] } } config("module_manager_config") { include_dirs = [ "module_manager" ] } ohos_source_set("ace_napi_static") { defines = [] public_configs = [ ":ace_napi_config" ] deps = [] external_deps = [] sources = napi_sources if (current_cpu == "arm64") { defines += [ "_ARM64_" ] } if (is_arkui_x) { if (target_os == "android") { libs = [ "log" ] } } else if (!is_mingw && !is_mac && !is_linux && is_ohos_standard_system) { external_deps += [ "hilog:libhilog", "hitrace:hitrace_meter", "hitrace:libhitracechain", "init:libbegetutil", ] defines += [ "ENABLE_HITRACE" ] } configs = [ "//third_party/icu/icu4c:icu_config" ] # Use static libuv and icu for cross build if (is_arkui_x) { deps += [ "${ets_runtime_path}:libark_jsruntime_static", "//third_party/bounds_checking_function:libsec_static", "//third_party/icu/icu4c:static_icui18n", "//third_party/icu/icu4c:static_icuuc", "//third_party/libuv:uv_static", ] configs += [ "${ets_runtime_path}:ark_jsruntime_public_config" ] } else { deps += [ "//third_party/icu/icu4c:shared_icui18n", "//third_party/icu/icu4c:shared_icuuc", "//third_party/libuv:uv", ] external_deps += [ "ets_runtime:libark_jsruntime" ] } cflags_cc = [ "-Wno-missing-braces" ] subsystem_name = "arkui" part_name = "napi" } if (is_arkui_x) { ohos_source_set("ace_napi") { deps = [ ":ace_napi_static" ] public_configs = [ ":ace_napi_config" ] subsystem_name = "arkui" part_name = "napi" } } else { ohos_shared_library("ace_napi") { deps = [ ":ace_napi_static", "//third_party/bounds_checking_function:libsec_shared", ] public_configs = [ ":ace_napi_config", ":module_manager_config", ] public_deps = [ "//third_party/libuv:uv" ] subsystem_name = "arkui" innerapi_tags = [ "platformsdk" ] part_name = "napi" } } config("container_scope_config") { visibility = [ ":*" ] include_dirs = [ "$ace_root/frameworks" ] } ohos_shared_library("ace_container_scope") { public_configs = [ ":container_scope_config" ] configs = [ "$ace_root:ace_config" ] sources = [ "$ace_root/frameworks/core/common/container_scope.cpp" ] subsystem_name = "arkui" innerapi_tags = [ "platformsdk_indirect" ] part_name = "napi" } ohos_source_set("ace_container_scope_static") { public_configs = [ ":container_scope_config" ] configs = [ "$ace_root:ace_config" ] sources = [ "$ace_root/frameworks/core/common/container_scope.cpp" ] } group("napi_packages") { deps = [ ":ace_napi" ] } ohos_ndk_library("libnapi_ndk") { ndk_description_file = "./libnapi.ndk.json" min_compact_version = "1" output_name = "ace_napi" } ohos_ndk_headers("napi_header") { dest_dir = "$ndk_headers_out_dir/napi" sources = [ "interfaces/kits/napi/common.h", "interfaces/kits/napi/native_api.h", ] } group("napi_packages_ndk") { deps = [ ":libnapi_ndk" ] } if (!build_ohos_ndk && !is_arkui_x) { group("napi_packages_test") { testonly = true deps = [ "sample/native_module_calc:calc", "sample/native_module_calc:number", "sample/native_module_callback:callback", "sample/native_module_demo:demo", "sample/native_module_netserver:netserver", "sample/native_module_storage:storage", "test/fuzztest:fuzztest", "test/unittest:unittest", ] } }