mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
bb72c26b52
Remove usage of aio example macro in adev PR Close #56496
25 lines
621 B
Python
25 lines
621 B
Python
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
package(default_visibility = [
|
|
"//adev/src/content/api-examples/forms:__subpackages__",
|
|
"//adev/src/content/api-examples/upgrade/static/ts:__subpackages__",
|
|
"//modules/playground:__subpackages__",
|
|
"//packages:__subpackages__",
|
|
])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ng_module(
|
|
name = "testing",
|
|
package_name = "@angular/private/testing",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
module_name = "@angular/private/testing",
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/platform-server:bundled_domino_lib",
|
|
],
|
|
)
|