summaryrefslogtreecommitdiff
path: root/deps/v8/src/d8.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/d8.gyp')
-rw-r--r--deps/v8/src/d8.gyp14
1 files changed, 7 insertions, 7 deletions
diff --git a/deps/v8/src/d8.gyp b/deps/v8/src/d8.gyp
index e92a321990..f7e36dd9c9 100644
--- a/deps/v8/src/d8.gyp
+++ b/deps/v8/src/d8.gyp
@@ -28,7 +28,6 @@
{
'variables': {
'v8_code': 1,
- 'console%': '',
# Enable support for Intel VTune. Supported on ia32/x64 only
'v8_enable_vtunejit%': 0,
'v8_enable_i18n_support%': 1,
@@ -51,14 +50,14 @@
'd8.h',
'd8.cc',
],
+ 'defines': [
+ # TODO(jochen): Remove again after this is globally turned on.
+ 'V8_IMMINENT_DEPRECATION_WARNINGS',
+ ],
'conditions': [
[ 'want_separate_host_toolset==1', {
'toolsets': [ '<(v8_toolset_for_d8)', ],
}],
- [ 'console=="readline"', {
- 'libraries': [ '-lreadline', ],
- 'sources': [ 'd8-readline.cc' ],
- }],
['(OS=="linux" or OS=="mac" or OS=="freebsd" or OS=="netbsd" \
or OS=="openbsd" or OS=="solaris" or OS=="android" \
or OS=="qnx" or OS=="aix")', {
@@ -69,8 +68,6 @@
}],
[ 'component!="shared_library"', {
'sources': [
- 'd8-debug.h',
- 'd8-debug.cc',
'<(SHARED_INTERMEDIATE_DIR)/d8-js.cc',
],
'conditions': [
@@ -101,6 +98,9 @@
'<(icu_gyp_path):icudata',
],
}],
+ ['v8_wasm!=0', {
+ 'include_dirs': ['../third_party/wasm'],
+ }],
],
},
{