blob: 89f7d7570d127ca3cde8e5647d45a2ea3f7665d5 [file] [log] [blame]
# Copyright 2020 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("../../scripts/build/ninja/devtools_entrypoint.gni")
import("../../scripts/build/ninja/devtools_module.gni")
devtools_module("protocol_client") {
sources = [
"InspectorBackend.js",
"NodeURL.js",
]
deps = [
"../common:bundle",
"../generated",
"../host:bundle",
]
}
devtools_entrypoint("bundle") {
entrypoint = "protocol_client.js"
deps = [ ":protocol_client" ]
}
devtools_entrypoint("legacy") {
entrypoint = "protocol_client-legacy.js"
deps = [ ":bundle" ]
}