-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PR-URL: #53685 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
Showing
3 changed files
with
41 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") | ||
|
||
nbytes_gn_build("nbytes") { | ||
} |
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,25 @@ | ||
# 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("nbytes_gn_build") { | ||
config("nbytes_config") { | ||
include_dirs = [ "." ] | ||
} | ||
|
||
gypi_values = exec_script("../../tools/gypi_to_gn.py", | ||
[ rebase_path("nbytes.gyp") ], | ||
"scope", | ||
[ "nbytes.gyp" ]) | ||
|
||
source_set(target_name) { | ||
forward_variables_from(invoker, "*") | ||
public_configs = [ ":nbytes_config" ] | ||
sources = gypi_values.nbytes_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