mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
2fcafb65c5
Use defaults.bzl for the common macros PR Close #63383
23 lines
422 B
Python
23 lines
422 B
Python
load("//tools:defaults.bzl", "angular_jasmine_test", "ts_project")
|
|
|
|
ts_project(
|
|
name = "test_lib",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler/test/expression_parser/utils",
|
|
"//packages/core",
|
|
],
|
|
)
|
|
|
|
angular_jasmine_test(
|
|
name = "test",
|
|
data = [
|
|
":test_lib",
|
|
],
|
|
)
|