Skip to content

Commit f264749

Browse files
bnoordhuisevanlucas
authored andcommitted
test: build addons with V8_DEPRECATION_WARNINGS=1
PR-URL: #6652 Reviewed-By: Anna Henningsen <[email protected]>
1 parent 01f010f commit f264749

File tree

13 files changed

+13
-0
lines changed

13 files changed

+13
-0
lines changed

test/addons/async-hello-world/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/at-exit/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/buffer-free-callback/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/heap-profiler/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ],
67
'win_delay_load_hook': 'false'
78
}

test/addons/hello-world-function-export/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/hello-world/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/load-long-path/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/make-callback-recurse/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/make-callback/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/null-buffer-neuter/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/repl-domain-abort/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

test/addons/stringbytes-external-exceed-max/binding.gyp

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5+
'defines': [ 'V8_DEPRECATION_WARNINGS=1' ],
56
'sources': [ 'binding.cc' ]
67
}
78
]

tools/doc/addon-verify.js

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ ${files[name]}
8989
targets: [
9090
{
9191
target_name: 'addon',
92+
defines: [ 'V8_DEPRECATION_WARNINGS=1' ],
9293
sources: files.map(function(file) {
9394
return file.name;
9495
})

0 commit comments

Comments
 (0)