| # 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("ui_utils") { |
| sources = [ |
| "append-style.js", |
| "create-shadow-root-with-core-styles.js", |
| "focus-changed.js", |
| "inject-core-styles.js", |
| "measured-scrollbar-width.js", |
| "register-custom-element.js", |
| ] |
| |
| deps = [ |
| "../../../core/root:bundle", |
| "../../../theme_support:bundle", |
| ] |
| } |
| |
| devtools_entrypoint("bundle") { |
| entrypoint = "utils.js" |
| |
| deps = [ ":ui_utils" ] |
| } |