a069e08354
This is necessary so we can produce ng metadata for our packages that are published as libraries PR Close #22176
15 lines
332 B
Python
15 lines
332 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
ng_module(
|
|
name = "testing",
|
|
testonly = 1,
|
|
srcs = glob(["**/*.ts"]),
|
|
module_name = "@angular/animations/browser/testing",
|
|
deps = [
|
|
"//packages/animations",
|
|
"//packages/animations/browser",
|
|
],
|
|
)
|