Skip to content

Commit eab418f

Browse files
targosjasnell
authored andcommitted
build: update V8 gypfile paths
The location of various gypfiles has changed in V8 5.2. PR-URL: #8317 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Ali Ijaz Sheikh <[email protected]>
1 parent 90efff6 commit eab418f

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,10 @@ $(NODE_G_EXE): config.gypi out/Makefile
7171
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
7272
ln -fs out/Debug/$(NODE_EXE) $@
7373

74-
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp deps/v8/build/toolchain.gypi deps/v8/build/features.gypi deps/v8/tools/gyp/v8.gyp node.gyp config.gypi
74+
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp \
75+
deps/zlib/zlib.gyp deps/v8/gypfiles/toolchain.gypi \
76+
deps/v8/gypfiles/features.gypi deps/v8/src/v8.gyp node.gyp \
77+
config.gypi
7578
$(PYTHON) tools/gyp_node.py -f make
7679

7780
config.gypi: configure

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
'V8_BASE': '<(PRODUCT_DIR)/libv8_base.a',
4545
}, {
4646
'OBJ_DIR': '<(PRODUCT_DIR)/obj.target',
47-
'V8_BASE': '<(PRODUCT_DIR)/obj.target/deps/v8/tools/gyp/libv8_base.a',
47+
'V8_BASE': '<(PRODUCT_DIR)/obj.target/deps/v8/src/libv8_base.a',
4848
}],
4949
['openssl_fips != ""', {
5050
'OPENSSL_PRODUCT': 'libcrypto.a',

node.gyp

+6-6
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,8 @@
259259
}],
260260
[ 'node_use_bundled_v8=="true"', {
261261
'dependencies': [
262-
'deps/v8/tools/gyp/v8.gyp:v8',
263-
'deps/v8/tools/gyp/v8.gyp:v8_libplatform'
262+
'deps/v8/src/v8.gyp:v8',
263+
'deps/v8/src/v8.gyp:v8_libplatform'
264264
],
265265
}],
266266
[ 'node_use_v8_platform=="true"', {
@@ -464,7 +464,7 @@
464464
'defines': [ 'NODE_NO_BROWSER_GLOBALS' ],
465465
} ],
466466
[ 'node_use_bundled_v8=="true" and v8_postmortem_support=="true"', {
467-
'dependencies': [ 'deps/v8/tools/gyp/v8.gyp:postmortem-metadata' ],
467+
'dependencies': [ 'deps/v8/src/v8.gyp:postmortem-metadata' ],
468468
'conditions': [
469469
# -force_load is not applicable for the static library
470470
[ 'node_target_type!="static_library"', {
@@ -899,13 +899,13 @@
899899
}],
900900
[ 'node_use_v8_platform=="true"', {
901901
'dependencies': [
902-
'deps/v8/tools/gyp/v8.gyp:v8_libplatform',
902+
'deps/v8/src/v8.gyp:v8_libplatform',
903903
],
904904
}],
905905
[ 'node_use_bundled_v8=="true"', {
906906
'dependencies': [
907-
'deps/v8/tools/gyp/v8.gyp:v8',
908-
'deps/v8/tools/gyp/v8.gyp:v8_libplatform'
907+
'deps/v8/src/v8.gyp:v8',
908+
'deps/v8/src/v8.gyp:v8_libplatform'
909909
],
910910
}],
911911
]

0 commit comments

Comments
 (0)