Tim van der Lippe | 7b347ca | 2021-04-09 15:59:21 | [diff] [blame] | 1 | # Copyright 2021 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. |
Tim van der Lippe | b276117 | 2021-04-12 14:09:59 | [diff] [blame] | 4 | import("../../../scripts/build/ninja/devtools_entrypoint.gni") |
Tim van der Lippe | 7b347ca | 2021-04-09 15:59:21 | [diff] [blame] | 5 | import("../../../third_party/typescript/typescript.gni") |
| 6 | |
Tim van der Lippe | b276117 | 2021-04-12 14:09:59 | [diff] [blame] | 7 | devtools_entrypoint("devtools_app-meta-files") { |
| 8 | entrypoint = "devtools_app-meta-files.ts" |
Tim van der Lippe | 7b347ca | 2021-04-09 15:59:21 | [diff] [blame] | 9 | |
| 10 | deps = [ |
| 11 | "../../inspector_main:meta", |
| 12 | "../../issues:meta", |
| 13 | "../../panels/accessibility:meta", |
| 14 | "../../panels/animation:meta", |
| 15 | "../../panels/application:meta", |
| 16 | "../../panels/browser_debugger:meta", |
| 17 | "../../panels/css_overview:meta", |
| 18 | "../../panels/developer_resources:meta", |
| 19 | "../../panels/elements:meta", |
| 20 | "../../panels/emulation:meta", |
| 21 | "../../panels/help:meta", |
| 22 | "../../panels/layer_viewer:meta", |
| 23 | "../../panels/layers:meta", |
| 24 | "../../panels/lighthouse:meta", |
| 25 | "../../panels/media:meta", |
| 26 | "../../panels/mobile_throttling:meta", |
| 27 | "../../panels/network:meta", |
| 28 | "../../panels/performance_monitor:meta", |
Tim van der Lippe | 8f11dcd | 2021-04-16 10:40:34 | [diff] [blame^] | 29 | "../../panels/security:meta", |
Tim van der Lippe | 7b347ca | 2021-04-09 15:59:21 | [diff] [blame] | 30 | "../../timeline:meta", |
| 31 | "../../web_audio:meta", |
| 32 | "../../webauthn:meta", |
Tim van der Lippe | b276117 | 2021-04-12 14:09:59 | [diff] [blame] | 33 | ] |
| 34 | } |
| 35 | |
| 36 | ts_library("devtools_app") { |
| 37 | no_emit = true |
| 38 | sources = [ "devtools_app.js" ] |
| 39 | |
| 40 | deps = [ |
| 41 | ":devtools_app-meta-files", |
Tim van der Lippe | dbb97be | 2021-04-15 15:12:43 | [diff] [blame] | 42 | "../../entrypoints/startup:bundle", |
Tim van der Lippe | 7b347ca | 2021-04-09 15:59:21 | [diff] [blame] | 43 | "../shell", |
| 44 | ] |
| 45 | } |