| # 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("cookie_table") { |
| sources = [ "CookiesTable.ts" ] |
| |
| deps = [ |
| "../browser_sdk:bundle", |
| "../core/common:bundle", |
| "../core/i18n:bundle", |
| "../core/root:bundle", |
| "../core/sdk:bundle", |
| "../data_grid:bundle", |
| "../ui/legacy:bundle", |
| ] |
| } |
| |
| devtools_entrypoint("bundle") { |
| entrypoint = "cookie_table.ts" |
| |
| deps = [ ":cookie_table" ] |
| } |
| |
| devtools_entrypoint("legacy") { |
| entrypoint = "cookie_table-legacy.ts" |
| |
| deps = [ ":bundle" ] |
| } |