647b8595d0
This is needed so the rules produce metadata.json files, which is essential for building compiler/integration tests with Bazel. PR Close #22005
20 lines
360 B
Python
20 lines
360 B
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
ng_module(
|
|
name = "http",
|
|
srcs = glob(
|
|
[
|
|
"*.ts",
|
|
"src/**/*.ts",
|
|
],
|
|
),
|
|
module_name = "@angular/http",
|
|
deps = [
|
|
"//packages/core",
|
|
"//packages/platform-browser",
|
|
"@rxjs",
|
|
],
|
|
)
|