File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,15 @@ declare_args() {
7
7
# The location of Node.js in source code tree.
8
8
node_path = " //node"
9
9
10
- # The location of V8, use the one from node's deps by default.
10
+ # The location of V8 - use the one from node's deps by default.
11
11
node_v8_path = " $node_path /deps/v8"
12
12
13
+ # The location of OpenSSL - use the one from node's deps by default.
13
14
node_openssl_path = " $node_path /deps/openssl"
14
15
16
+ # The location of simdutf - use the one from node's deps by default.
17
+ node_simdutf_path = " $node_path /deps/simdutf"
18
+
15
19
# The NODE_MODULE_VERSION defined in node_version.h.
16
20
node_module_version = exec_script (" $node_path /tools/getmoduleversion.py" , [], " value" )
17
21
Original file line number Diff line number Diff line change @@ -158,10 +158,10 @@ template("node_gn_build") {
158
158
" deps/nghttp2" ,
159
159
" deps/ngtcp2" ,
160
160
" deps/postject" ,
161
- " deps/simdutf" ,
162
161
" deps/sqlite" ,
163
162
" deps/uvwasi" ,
164
163
" //third_party/zlib" ,
164
+ " $node_simdutf_path " ,
165
165
" $node_v8_path :v8_libplatform" ,
166
166
]
167
167
@@ -283,8 +283,8 @@ template("node_gn_build") {
283
283
284
284
executable (" node_js2c" ) {
285
285
deps = [
286
- " deps/simdutf" ,
287
286
" deps/uv" ,
287
+ " $node_simdutf_path " ,
288
288
]
289
289
sources = [
290
290
" tools/js2c.cc" ,
@@ -341,7 +341,7 @@ template("node_gn_build") {
341
341
" deps/googletest" ,
342
342
" deps/googletest:gtest_main" ,
343
343
" deps/nbytes" ,
344
- " deps/simdutf " ,
344
+ " $node_simdutf_path " ,
345
345
]
346
346
347
347
sources = gypi_values .node_cctest_sources
You can’t perform that action at this time.
0 commit comments