summaryrefslogtreecommitdiff
path: root/tools/inspector_protocol/inspector_protocol.gypi
diff options
context:
space:
mode:
authorAndrey Lushnikov <lushnikov@chromium.org>2018-07-25 13:48:47 -0700
committerAleksey Kozyatinskiy <ak239spb@gmail.com>2018-08-10 18:03:43 -0700
commite0395247c899af101f8a1f76a8554be1ff14040a (patch)
tree2e0c061ac9dc90092605aaf49b7a7d0ed82799da /tools/inspector_protocol/inspector_protocol.gypi
parent2e37d0fdc0ad4a23034b7a2793c766bbcc416de2 (diff)
downloadandroid-node-v8-e0395247c899af101f8a1f76a8554be1ff14040a.tar.gz
android-node-v8-e0395247c899af101f8a1f76a8554be1ff14040a.tar.bz2
android-node-v8-e0395247c899af101f8a1f76a8554be1ff14040a.zip
inspector: add inspector_protocol as a direct dependency
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>
Diffstat (limited to 'tools/inspector_protocol/inspector_protocol.gypi')
-rw-r--r--tools/inspector_protocol/inspector_protocol.gypi33
1 files changed, 33 insertions, 0 deletions
diff --git a/tools/inspector_protocol/inspector_protocol.gypi b/tools/inspector_protocol/inspector_protocol.gypi
new file mode 100644
index 0000000000..1fb7119b5f
--- /dev/null
+++ b/tools/inspector_protocol/inspector_protocol.gypi
@@ -0,0 +1,33 @@
+# 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.
+
+{
+ 'variables': {
+ 'inspector_protocol_files': [
+ 'lib/Allocator_h.template',
+ 'lib/Array_h.template',
+ 'lib/Collections_h.template',
+ 'lib/DispatcherBase_cpp.template',
+ 'lib/DispatcherBase_h.template',
+ 'lib/ErrorSupport_cpp.template',
+ 'lib/ErrorSupport_h.template',
+ 'lib/Forward_h.template',
+ 'lib/FrontendChannel_h.template',
+ 'lib/Maybe_h.template',
+ 'lib/Object_cpp.template',
+ 'lib/Object_h.template',
+ 'lib/Parser_cpp.template',
+ 'lib/Parser_h.template',
+ 'lib/Protocol_cpp.template',
+ 'lib/ValueConversions_h.template',
+ 'lib/Values_cpp.template',
+ 'lib/Values_h.template',
+ 'templates/Exported_h.template',
+ 'templates/Imported_h.template',
+ 'templates/TypeBuilder_cpp.template',
+ 'templates/TypeBuilder_h.template',
+ 'CodeGenerator.py',
+ ]
+ }
+}