2025-07-14 14:41:41 +00:00
|
|
|
load("//devtools/tools:defaults.bzl", "ng_project")
|
2021-09-08 22:38:13 +00:00
|
|
|
|
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
|
|
exports_files(["tsconfig.lib.json"])
|
|
|
|
|
|
2025-05-13 19:59:40 +00:00
|
|
|
ng_project(
|
2025-05-08 13:20:37 +00:00
|
|
|
name = "ng-devtools",
|
2021-09-08 22:38:13 +00:00
|
|
|
srcs = ["index.ts"],
|
2025-05-13 19:59:40 +00:00
|
|
|
deps = [
|
2025-07-01 23:18:43 +00:00
|
|
|
"//:node_modules/@angular/animations",
|
2025-05-13 19:59:40 +00:00
|
|
|
"//:node_modules/@angular/cdk",
|
2025-07-01 23:18:43 +00:00
|
|
|
"//:node_modules/@angular/common",
|
|
|
|
|
"//:node_modules/@angular/core",
|
|
|
|
|
"//:node_modules/@angular/forms",
|
2025-05-13 19:59:40 +00:00
|
|
|
"//:node_modules/@angular/material",
|
|
|
|
|
"//:node_modules/@types/d3",
|
|
|
|
|
"//:node_modules/d3",
|
|
|
|
|
"//:node_modules/ngx-flamegraph",
|
|
|
|
|
"//:node_modules/rxjs",
|
|
|
|
|
"//:node_modules/webtreemap",
|
2025-07-30 17:43:25 +00:00
|
|
|
"//devtools/projects/ng-devtools/src",
|
|
|
|
|
"//devtools/projects/protocol",
|
2021-09-08 22:38:13 +00:00
|
|
|
],
|
2021-11-07 23:57:52 +00:00
|
|
|
)
|