Currently, node.js depends on inspector_protocol indirectly through the dependency on v8. This is a dependency violation that will make it hard to roll V8 into Node if V8 gets a newer inspector protocol version with incompatible API. In fact, this surfaced on one of our bots when we tried to roll new inspector_protocol into V8. This patch adds inspector protocol and its required dependencies to node deps: - jinja2 - markupsafe PR-URL: https://github.com/nodejs/node/pull/21975 Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Aleksei Koziatinskii <ak239spb@gmail.com>
40 lines
1.1 KiB
Python
Executable File
40 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import os.path
|
|
import sys
|
|
|
|
try:
|
|
import json
|
|
except ImportError:
|
|
import simplejson as json
|
|
|
|
|
|
def main(argv):
|
|
if len(argv) < 1:
|
|
sys.stderr.write("Usage: %s <protocol-1> [<protocol-2> [, <protocol-3>...]] <output-file>\n" % sys.argv[0])
|
|
return 1
|
|
|
|
domains = []
|
|
version = None
|
|
for protocol in argv[:-1]:
|
|
file_name = os.path.normpath(protocol)
|
|
if not os.path.isfile(file_name):
|
|
sys.stderr.write("Cannot find %s\n" % file_name)
|
|
return 1
|
|
input_file = open(file_name, "r")
|
|
json_string = input_file.read()
|
|
parsed_json = json.loads(json_string)
|
|
domains += parsed_json["domains"]
|
|
version = parsed_json["version"]
|
|
|
|
output_file = open(argv[-1], "w")
|
|
json.dump({"version": version, "domains": domains}, output_file, indent=4, sort_keys=False, separators=(',', ': '))
|
|
output_file.close()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(main(sys.argv[1:]))
|