1# Copyright 2020 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("../../scripts/build/ninja/copy.gni")
6import("../../third_party/typescript/typescript.gni")
7
8group("e2e") {
9  deps = [
10    ":config",
11    ":tests",
12    "resources",
13  ]
14}
15
16node_ts_library("tests") {
17  deps = [
18    "animations",
19    "application",
20    "assertion",
21    "changes",
22    "console",
23    "coverage",
24    "cross_tool_integration",
25    "elements",
26    "emulation",
27    "host",
28    "inline_editor",
29    "issues",
30    "layers",
31    "lighthouse",
32    "media",
33    "memory",
34    "network",
35    "performance",
36    "profiler",
37    "puppeteer",
38    "rendering",
39    "search",
40    "security",
41    "sensors",
42    "settings",
43    "snippets",
44    "sources",
45    "webaudio",
46  ]
47}
48
49copy_to_gen("config") {
50  sources = [ ".mocharc.js" ]
51}
52