forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
38 lines (35 loc) · 882 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ng_module", "ng_package")
ng_module(
name = "platform-browser",
srcs = glob(
[
"*.ts",
"src/**/*.ts",
],
),
module_name = "@angular/platform-browser",
deps = [
"//packages:types",
"//packages/common",
"//packages/core",
],
)
ng_package(
name = "npm_package",
srcs = [
"package.json",
"//packages/platform-browser/animations:package.json",
"//packages/platform-browser/testing:package.json",
],
entry_point = "packages/platform-browser/index.js",
tags = [
"ivy-jit",
"release-with-framework",
],
deps = [
":platform-browser",
"//packages/platform-browser/animations",
"//packages/platform-browser/testing",
],
)