| # 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/copy.gni") |
| import("../../../../../third_party/typescript/typescript.gni") |
| |
| ts_library("ts") { |
| testonly = true |
| sources = [ |
| "basic.ts", |
| "custom-context-menu-items.ts", |
| "filter.ts", |
| ] |
| |
| deps = [ |
| "../../../../../test/unittests/front_end/helpers", |
| "../../../../models/text_utils:bundle", |
| "../../../../ui/components/data_grid:bundle", |
| "../../../../ui/components/helpers:bundle", |
| ] |
| } |
| |
| copy_to_gen("data_grid_controller") { |
| testonly = true |
| sources = [ |
| "basic.html", |
| "custom-context-menu-items.html", |
| "filter.html", |
| ] |
| |
| deps = [ ":ts" ] |
| } |