mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
98960556a6
See associated pull request for more information.
26 lines
571 B
Python
26 lines
571 B
Python
load(
|
|
"//tools:defaults.bzl",
|
|
"ng_web_test_suite",
|
|
"ts_project",
|
|
)
|
|
|
|
ts_project(
|
|
name = "webmcp_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/core:node_modules/@mcp-b/webmcp-polyfill",
|
|
"//packages/core:node_modules/@mcp-b/webmcp-types",
|
|
"//packages/core/testing",
|
|
"//packages/core/third_party/@mcp-b/webmcp-types",
|
|
"//packages/router",
|
|
"//packages/router/testing",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "webmcp",
|
|
deps = [":webmcp_lib"],
|
|
)
|