mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
13 lines
253 B
Text
13 lines
253 B
Text
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ng_module(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages/core",
|
|
"@npm//rxjs",
|
|
],
|
|
)
|