| # 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("webauthn") { |
| sources = [ "WebauthnPane.js" ] |
| |
| deps = [ |
| "../common:bundle", |
| "../data_grid:bundle", |
| "../host:bundle", |
| "../sdk:bundle", |
| "../ui:bundle", |
| ] |
| } |
| |
| devtools_entrypoint("bundle") { |
| entrypoint = "webauthn.js" |
| |
| deps = [ ":webauthn" ] |
| } |
| |
| devtools_entrypoint("legacy") { |
| entrypoint = "webauthn-legacy.js" |
| |
| deps = [ ":bundle" ] |
| } |