Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Simplified the gyp settings for fuzz-url.
  • Loading branch information
DavidKorczynski committed Aug 13, 2020
commit 10647c0abfc5f39dbd4efb8c8fa68df2040eae84
17 changes: 1 addition & 16 deletions node.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -1176,11 +1176,6 @@

'dependencies': [
'<(node_lib_target_name)',
'deps/histogram/histogram.gyp:histogram',
'deps/uvwasi/uvwasi.gyp:uvwasi',
'node_dtrace_header',
'node_dtrace_ustack',
'node_dtrace_provider',
],

'includes': [
Expand All @@ -1189,11 +1184,6 @@

'include_dirs': [
'src',
'tools/msvs/genfiles',
'deps/v8/include',
'deps/cares/include',
'deps/uv/include',
'deps/uvwasi/include',
],

'defines': [
Expand All @@ -1209,15 +1199,10 @@
],

'conditions': [
[ 'node_use_openssl=="true"', {
'defines': [
'HAVE_OPENSSL=1',
],
}],
['OS=="linux"', {
'ldflags': [ '-fsanitize=fuzzer' ]
}],
# Skip cctest while building shared lib node for Windows
# Ensure that ossfuzz flag has been set and that we are on Linux
[ 'OS!="linux" or ossfuzz!="true"', {
'type': 'none',
}],
Expand Down