| # 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("data_grid") { |
| sources = [ |
| "DataGrid.ts", |
| "ShowMoreDataGridNode.ts", |
| "SortableDataGrid.ts", |
| "ViewportDataGrid.ts", |
| ] |
| |
| deps = [ |
| "../core/common:bundle", |
| "../core/i18n:bundle", |
| "../core/platform:bundle", |
| "../ui/legacy:bundle", |
| ] |
| } |
| |
| copy_to_gen("legacy_css") { |
| sources = [ "dataGrid.css" ] |
| } |
| |
| devtools_entrypoint("bundle") { |
| entrypoint = "data_grid.ts" |
| |
| deps = [ ":data_grid" ] |
| } |
| |
| devtools_entrypoint("legacy") { |
| entrypoint = "data_grid-legacy.ts" |
| |
| deps = [ ":bundle" ] |
| } |