21 lines
393 B
Python
21 lines
393 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
ts_library(
|
|
name = "testing",
|
|
testonly = 1,
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
module_name = "@angular/common/http/testing",
|
|
deps = [
|
|
"//packages/common/http",
|
|
"//packages/core",
|
|
"@rxjs",
|
|
],
|
|
)
|