mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
9a27c5befb
Use defaults.bzl for the common macros PR Close #63384
16 lines
270 B
Python
16 lines
270 B
Python
load("//tools:defaults.bzl", "ts_project")
|
|
|
|
ts_project(
|
|
name = "utils",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["*.ts"],
|
|
),
|
|
visibility = [
|
|
"//packages/compiler/test:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//packages/compiler",
|
|
],
|
|
)
|