angular-cn/packages/http/BUILD.bazel
Alex Eagle d32939d51a build: restrict visibility of npm_package targets (#27611)
dependencies on these cause very long rebuilds which have to re-package angular.
Such tests belong in the integration/ folder

PR Close #27611
2018-12-14 10:20:40 -08:00

39 lines
821 B
Python

package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ng_module", "ng_package")
ng_module(
name = "http",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
),
module_name = "@angular/http",
deps = [
"//packages/core",
"//packages/platform-browser",
"@rxjs",
],
)
ng_package(
name = "npm_package",
srcs = [
"package.json",
"//packages/http/testing:package.json",
],
entry_point = "packages/http/index.js",
tags = [
"release-with-framework",
],
# Do not add more to this list.
# Dependencies on the full npm_package cause long re-builds.
visibility = ["//visibility:private"],
deps = [
":http",
"//packages/http/testing",
],
)