mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
23 lines
500 B
Text
23 lines
500 B
Text
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",
|
|
],
|
|
)
|