blob: 6524778fe1d4ab4ee1b1dce437088778db7ba952 [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("tree_outline") {
sources = [
"TreeOutline.ts",
"TreeOutlineUtils.ts",
]
deps = [
"../../../component_helpers:bundle",
"../../../core/platform:bundle",
"../../../third_party/lit-html:bundle",
"../../../ui/components/render_coordinator:bundle",
]
visibility = [ "../../../../test/unittests/front_end/ui/components" ]
}
devtools_entrypoint("bundle") {
entrypoint = "tree_outline.ts"
deps = [ ":tree_outline" ]
}