forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: add GN configurations for simdjson
PR-URL: nodejs#50831 Reviewed-By: Keyhan Vakil <[email protected]> Reviewed-By: Marco Ippolito <[email protected]> Reviewed-By: Yagiz Nizipli <[email protected]>
- Loading branch information
1 parent
7cc3ff0
commit bc0771b
Showing
3 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
############################################################################## | ||
# # | ||
# DO NOT EDIT THIS FILE! # | ||
# # | ||
############################################################################## | ||
|
||
# This file is used by GN for building, which is NOT the build system used for | ||
# building official binaries. | ||
# Please modify the gyp files if you are making changes to build system. | ||
|
||
import("unofficial.gni") | ||
|
||
simdjson_gn_build("simdjson") { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 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. | ||
|
||
# The actual configurations are put inside a template in unofficial.gni to | ||
# prevent accidental edits from contributors. | ||
template("simdjson_gn_build") { | ||
config("simdjson_config") { | ||
include_dirs = [ "." ] | ||
} | ||
|
||
gypi_values = exec_script("../../tools/gypi_to_gn.py", | ||
[ rebase_path("simdjson.gyp") ], | ||
"scope", | ||
[ "simdjson.gyp" ]) | ||
|
||
source_set(target_name) { | ||
forward_variables_from(invoker, "*") | ||
public_configs = [ ":simdjson_config" ] | ||
sources = gypi_values.simdjson_sources | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters