
This is a partial cherry-pick of 370ab66c4f020da7e1a6b25b96109f1b3cbf9cba which included this along with a new feature for ivy. PR Close #22258
20 lines
357 B
Python
20 lines
357 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/common/http",
|
|
deps = [
|
|
"//packages/common",
|
|
"//packages/core",
|
|
"@rxjs",
|
|
],
|
|
)
|