blob: b9c757fd93d49ac3ab5be8a4f1697878c044e05f [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_monitor") {
sources = [ "ProtocolMonitor.js" ]
deps = [
"../data_grid:bundle",
"../host:bundle",
"../protocol_client:bundle",
"../sdk:bundle",
"../source_frame:bundle",
"../text_utils:bundle",
"../ui:bundle",
]
}
devtools_entrypoint("bundle") {
entrypoint = "protocol_monitor.js"
deps = [ ":protocol_monitor" ]
}
devtools_entrypoint("legacy") {
entrypoint = "protocol_monitor-legacy.js"
deps = [ ":bundle" ]
}