From 117631022691faa779c5b42ea38a1f20b719e35e Mon Sep 17 00:00:00 2001 From: Cheng Date: Thu, 25 Jul 2024 11:39:01 +0900 Subject: [PATCH] deps: add gn build files for ncrypto PR-URL: https://github.com/nodejs/node/pull/53940 Reviewed-By: James M Snell Reviewed-By: Yagiz Nizipli --- deps/ncrypto/unofficial.gni | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 deps/ncrypto/unofficial.gni diff --git a/deps/ncrypto/unofficial.gni b/deps/ncrypto/unofficial.gni new file mode 100644 index 00000000000000..2d4edb079b241f --- /dev/null +++ b/deps/ncrypto/unofficial.gni @@ -0,0 +1,31 @@ +# This file is used by GN for building, which is NOT the build system used for +# building official binaries. +# Please edit the gyp files if you are making changes to build system. + +import("../../node.gni") +import("$node_v8_path/gni/v8.gni") + +# The actual configurations are put inside a template in unofficial.gni to +# prevent accidental edits from contributors. +template("ncrypto_gn_build") { + config("ncrypto_config") { + include_dirs = [ "." ] + cflags = [ + "-Wno-deprecated-declarations", + "-Wno-pessimizing-move", + "-Wno-shadow", + ] + } + + gypi_values = exec_script("../../tools/gypi_to_gn.py", + [ rebase_path("ncrypto.gyp") ], + "scope", + [ "ncrypto.gyp" ]) + + source_set(target_name) { + forward_variables_from(invoker, "*") + public_configs = [ ":ncrypto_config" ] + sources = gypi_values.ncrypto_sources + deps = [ "../openssl" ] + } +}