File tree Expand file tree Collapse file tree 4 files changed +35
-2
lines changed
Expand file tree Collapse file tree 4 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 1+ # #############################################################################
2+ # #
3+ # DO NOT EDIT THIS FILE! #
4+ # #
5+ # #############################################################################
6+
7+ # This file is used by GN for building, which is NOT the build system used for
8+ # building official binaries.
9+ # Please modify the gyp files if you are making changes to build system.
10+
11+ import (" unofficial.gni" )
12+
13+ merve_gn_build (" merve" ) {
14+ }
Original file line number Diff line number Diff line change 1+ # This file is used by GN for building, which is NOT the build system used for
2+ # building official binaries.
3+ # Please edit the gyp files if you are making changes to build system.
4+
5+ # The actual configurations are put inside a template in unofficial.gni to
6+ # prevent accidental edits from contributors.
7+ template (" merve_gn_build" ) {
8+ config (" merve_config" ) {
9+ include_dirs = [ " ." ]
10+ }
11+ gypi_values = exec_script (" ../../tools/gypi_to_gn.py" ,
12+ [ rebase_path (" merve.gyp" ) ],
13+ " scope" ,
14+ [ " merve.gyp" ])
15+ source_set (target_name ) {
16+ forward_variables_from (invoker , " *" )
17+ public_configs = [ " :merve_config" ]
18+ sources = gypi_values .merve_sources
19+ }
20+ }
Original file line number Diff line number Diff line change @@ -26,8 +26,6 @@ declare_args() {
2626 # TODO(zcbenz ): This is currently copied from configure.py, we should share
2727 # the list between configure.py and GN configurations.
2828 node_builtin_shareable_builtins = [
29- " deps/cjs-module-lexer/lexer.js" ,
30- " deps/cjs-module-lexer/dist/lexer.js" ,
3129 " deps/undici/undici.js" ,
3230 " deps/amaro/dist/index.js" ,
3331 ]
Original file line number Diff line number Diff line change @@ -160,6 +160,7 @@ template("node_gn_build") {
160160 " deps/cares" ,
161161 " deps/histogram" ,
162162 " deps/llhttp" ,
163+ " deps/merve" ,
163164 " deps/nbytes" ,
164165 " deps/nghttp2" ,
165166 " deps/ngtcp2" ,
You can’t perform that action at this time.
0 commit comments