2018-03-07 14:26:11 -05:00
|
|
|
load("//tools:defaults.bzl", "ng_module", "ng_package")
|
2017-12-06 09:56:49 -05:00
|
|
|
|
2019-01-16 04:19:01 -05:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
2018-02-02 12:18:44 -05:00
|
|
|
ng_module(
|
2017-12-06 09:56:49 -05:00
|
|
|
name = "http",
|
|
|
|
srcs = glob(
|
|
|
|
[
|
|
|
|
"*.ts",
|
|
|
|
"src/**/*.ts",
|
|
|
|
],
|
|
|
|
),
|
2019-06-14 03:29:04 -04:00
|
|
|
# Disable building with strict compatibility as the http package is no longer
|
|
|
|
# maintained and therefore not needed to be made compatible with --strict.
|
|
|
|
tsconfig = "//packages:tsconfig-build-no-strict",
|
2017-12-06 09:56:49 -05:00
|
|
|
deps = [
|
|
|
|
"//packages/core",
|
|
|
|
"//packages/platform-browser",
|
2019-02-20 12:54:42 -05:00
|
|
|
"@npm//rxjs",
|
2017-12-06 09:56:49 -05:00
|
|
|
],
|
|
|
|
)
|
2018-03-07 14:26:11 -05:00
|
|
|
|
|
|
|
ng_package(
|
|
|
|
name = "npm_package",
|
2018-03-13 14:00:53 -04:00
|
|
|
srcs = [
|
|
|
|
"package.json",
|
|
|
|
"//packages/http/testing:package.json",
|
|
|
|
],
|
2019-06-07 16:38:06 -04:00
|
|
|
entry_point = ":index.ts",
|
2018-06-05 14:38:46 -04:00
|
|
|
tags = [
|
2019-03-27 13:50:39 -04:00
|
|
|
# Currently the plan for Angular v8 is to exclude @angular/http package from publishing
|
|
|
|
# "release-with-framework",
|
2018-06-05 14:38:46 -04:00
|
|
|
],
|
2018-12-11 19:53:42 -05:00
|
|
|
# Do not add more to this list.
|
|
|
|
# Dependencies on the full npm_package cause long re-builds.
|
2019-01-22 12:46:51 -05:00
|
|
|
visibility = [
|
|
|
|
"//packages/compiler-cli/integrationtest:__pkg__",
|
|
|
|
],
|
2018-03-07 14:26:11 -05:00
|
|
|
deps = [
|
|
|
|
":http",
|
|
|
|
"//packages/http/testing",
|
|
|
|
],
|
|
|
|
)
|