mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
a1441a432d
Having zone.js here already wasn't necessary.
27 lines
505 B
Python
27 lines
505 B
Python
load("//tools:defaults.bzl", "ng_web_test_suite", "ts_project", "zoneless_jasmine_test")
|
|
|
|
ts_project(
|
|
name = "ml_parser_lib",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages:types",
|
|
"//packages/compiler",
|
|
"//packages/compiler/test/ml_parser/util",
|
|
],
|
|
)
|
|
|
|
zoneless_jasmine_test(
|
|
name = "ml_parser",
|
|
data = [
|
|
":ml_parser_lib",
|
|
],
|
|
)
|
|
|
|
ng_web_test_suite(
|
|
name = "ml_parser_web",
|
|
deps = [
|
|
":ml_parser_lib",
|
|
],
|
|
)
|