mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
875ea30d6b
Remove the interop macros and final usages PR Close #62909
24 lines
500 B
Python
24 lines
500 B
Python
load("//tools:defaults2.bzl", "ng_project")
|
|
|
|
package(default_visibility = [
|
|
"//modules/playground:__subpackages__",
|
|
"//packages:__subpackages__",
|
|
])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ng_project(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
deps = [
|
|
"//packages/common",
|
|
"//packages/core",
|
|
"//packages/core/testing",
|
|
"//packages/platform-browser",
|
|
"//packages/platform-server:bundled_domino_lib",
|
|
],
|
|
)
|