Skip to content

Commit b30ec59

Browse files
ofrobotstargos
authored andcommitted
deps: switch to v8_inspector in V8
* Delete deps/v8_inspector * Start building v8_inspector from V8 * Remove licenses related to the deleted code from LICENSE file PR-URL: #10992 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 3c53ad0 commit b30ec59

File tree

235 files changed

+5
-42265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

235 files changed

+5
-42265
lines changed

LICENSE

-103
Original file line numberDiff line numberDiff line change
@@ -1070,106 +1070,3 @@ The externally maintained libraries used by Node.js are:
10701070
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
10711071
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
10721072
"""
1073-
1074-
- v8_inspector, located at deps/v8_inspector/third_party/v8_inspector, is licensed as follows:
1075-
"""
1076-
// Copyright 2015 The Chromium Authors. All rights reserved.
1077-
//
1078-
// Redistribution and use in source and binary forms, with or without
1079-
// modification, are permitted provided that the following conditions are
1080-
// met:
1081-
//
1082-
// * Redistributions of source code must retain the above copyright
1083-
// notice, this list of conditions and the following disclaimer.
1084-
// * Redistributions in binary form must reproduce the above
1085-
// copyright notice, this list of conditions and the following disclaimer
1086-
// in the documentation and/or other materials provided with the
1087-
// distribution.
1088-
// * Neither the name of Google Inc. nor the names of its
1089-
// contributors may be used to endorse or promote products derived from
1090-
// this software without specific prior written permission.
1091-
//
1092-
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1093-
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1094-
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1095-
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1096-
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1097-
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1098-
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1099-
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1100-
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1101-
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1102-
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1103-
"""
1104-
1105-
- jinja2, located at deps/v8_inspector/third_party/jinja2, is licensed as follows:
1106-
"""
1107-
Copyright (c) 2009 by the Jinja Team, see AUTHORS for more details.
1108-
1109-
Some rights reserved.
1110-
1111-
Redistribution and use in source and binary forms, with or without
1112-
modification, are permitted provided that the following conditions are
1113-
met:
1114-
1115-
* Redistributions of source code must retain the above copyright
1116-
notice, this list of conditions and the following disclaimer.
1117-
1118-
* Redistributions in binary form must reproduce the above
1119-
copyright notice, this list of conditions and the following
1120-
disclaimer in the documentation and/or other materials provided
1121-
with the distribution.
1122-
1123-
* The names of the contributors may not be used to endorse or
1124-
promote products derived from this software without specific
1125-
prior written permission.
1126-
1127-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1128-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1129-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1130-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1131-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1132-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1133-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1134-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1135-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1136-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1137-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1138-
"""
1139-
1140-
- markupsafe, located at deps/v8_inspector/third_party/markupsafe, is licensed as follows:
1141-
"""
1142-
Copyright (c) 2010 by Armin Ronacher and contributors. See AUTHORS
1143-
for more details.
1144-
1145-
Some rights reserved.
1146-
1147-
Redistribution and use in source and binary forms of the software as well
1148-
as documentation, with or without modification, are permitted provided
1149-
that the following conditions are met:
1150-
1151-
* Redistributions of source code must retain the above copyright
1152-
notice, this list of conditions and the following disclaimer.
1153-
1154-
* Redistributions in binary form must reproduce the above
1155-
copyright notice, this list of conditions and the following
1156-
disclaimer in the documentation and/or other materials provided
1157-
with the distribution.
1158-
1159-
* The names of the contributors may not be used to endorse or
1160-
promote products derived from this software without specific
1161-
prior written permission.
1162-
1163-
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED BY THE COPYRIGHT HOLDERS AND
1164-
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
1165-
NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1166-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
1167-
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
1168-
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
1169-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
1170-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
1171-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
1172-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
1173-
SOFTWARE AND DOCUMENTATION, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
1174-
DAMAGE.
1175-
"""

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -1283,7 +1283,7 @@ def configure_inspector(o):
12831283
disable_inspector = (options.without_inspector or
12841284
options.with_intl in (None, 'none') or
12851285
options.without_ssl)
1286-
o['variables']['v8_inspector'] = b(not disable_inspector)
1286+
o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1
12871287

12881288
output = {
12891289
'variables': {},

deps/v8_inspector/README.md

-12
This file was deleted.

deps/v8_inspector/include/v8-inspector-protocol.h

-13
This file was deleted.

0 commit comments

Comments
 (0)