mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
27 lines
721 B
Text
27 lines
721 B
Text
load("//tools:defaults2.bzl", "ng_project")
|
|
|
|
package(default_visibility = [
|
|
"//modules/playground:__subpackages__",
|
|
"//packages:__subpackages__",
|
|
])
|
|
|
|
exports_files(["package.json"])
|
|
|
|
ng_project(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(
|
|
["**/*.ts"],
|
|
),
|
|
interop_deps = [
|
|
"//packages/platform-server:bundled_domino_lib",
|
|
],
|
|
# TODO(rules_js migration): testonly targets do not auto-compute a module name right now.
|
|
module_name = "@angular/private/testing",
|
|
deps = [
|
|
"//packages/common:common_rjs",
|
|
"//packages/core:core_rjs",
|
|
"//packages/core/testing:testing_rjs",
|
|
"//packages/platform-browser:platform-browser_rjs",
|
|
],
|
|
)
|