2017-12-06 09:56:49 -05:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
load("@build_bazel_rules_typescript//:defs.bzl", "ts_library")
|
|
|
|
|
|
|
|
ts_library(
|
|
|
|
name = "testing",
|
|
|
|
testonly = 1,
|
2017-12-17 18:10:54 -05:00
|
|
|
srcs = glob(["**/*.ts"]),
|
2017-12-06 09:56:49 -05:00
|
|
|
module_name = "@angular/common/http/testing",
|
|
|
|
tsconfig = "//packages:tsconfig",
|
|
|
|
deps = [
|
|
|
|
"//packages/common/http",
|
2017-12-17 18:10:54 -05:00
|
|
|
"//packages/core",
|
|
|
|
"@rxjs",
|
2017-12-06 09:56:49 -05:00
|
|
|
],
|
|
|
|
)
|