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