mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This is necessary so we can produce ng metadata for our packages that are published as libraries PR Close #22176
19 lines
373 B
Text
19 lines
373 B
Text
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
ng_module(
|
|
name = "testing",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
module_name = "@angular/common/http/testing",
|
|
deps = [
|
|
"//packages/common/http",
|
|
"//packages/core",
|
|
"@rxjs",
|
|
],
|
|
)
|