Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Guo <yangguo@chromium.org>2019-05-06 08:57:45 +0300
committergengjiawen <technicalcute@gmail.com>2020-09-23 13:56:59 +0300
commita11788736a9eb17152f06fe28643ac2c270f4024 (patch)
tree5a981d2f327166b4c94f0aba53ca29ae4b8ac79c /configure.py
parent3b10f7f933dee3607649b6bd1ca24876704222ac (diff)
build: remove --build-v8-with-gn configure option
This option is now outdated and not used any longer. PR-URL: https://github.com/nodejs/node/pull/27576 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/configure.py b/configure.py
index 5134892cb52..2e253aba84d 100755
--- a/configure.py
+++ b/configure.py
@@ -40,10 +40,6 @@ import getmoduleversion
import getnapibuildversion
from gyp_node import run_gyp
-# imports in deps/v8/tools/node
-sys.path.insert(0, os.path.join('deps', 'v8', 'tools', 'node'))
-from fetch_deps import FetchDeps
-
# parse our options
parser = optparse.OptionParser()
@@ -679,12 +675,6 @@ parser.add_option('--without-bundled-v8',
help='do not use V8 includes from the bundled deps folder. ' +
'(This mode is not officially supported for regular applications)')
-parser.add_option('--build-v8-with-gn',
- action='store_true',
- dest='build_v8_with_gn',
- default=False,
- help='build V8 using GN instead of gyp')
-
parser.add_option('--verbose',
action='store_true',
dest='verbose',
@@ -1347,14 +1337,6 @@ def configure_v8(o):
o['variables']['test_isolation_mode'] = 'noop' # Needed by d8.gyp.
if options.without_bundled_v8 and options.enable_d8:
raise Exception('--enable-d8 is incompatible with --without-bundled-v8.')
- if options.without_bundled_v8 and options.build_v8_with_gn:
- raise Exception(
- '--build-v8-with-gn is incompatible with --without-bundled-v8.')
- if options.build_v8_with_gn:
- v8_path = os.path.join('deps', 'v8')
- print('Fetching dependencies to build V8 with GN')
- options.build_v8_with_gn = FetchDeps(v8_path)
- o['variables']['build_v8_with_gn'] = b(options.build_v8_with_gn)
def configure_openssl(o):