forked from angular/angular-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
118 lines (110 loc) · 2.64 KB
/
BUILD
File metadata and controls
118 lines (110 loc) · 2.64 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# Copyright Google Inc. All Rights Reserved.
#
# Use of this source code is governed by an MIT-style license that can be
# found in the LICENSE file at https://angular.io/license
package(default_visibility = ["//visibility:public"])
load("//tools:defaults.bzl", "ts_library")
licenses(["notice"]) # MIT License
ts_library(
name = "schematics",
srcs = glob(
include = ["src/**/*.ts"],
exclude = [
"src/**/*_spec.ts",
"src/**/*_benchmark.ts",
],
),
module_name = "@angular-devkit/schematics",
module_root = "src",
deps = [
"//packages/angular_devkit/core",
"//packages/angular_devkit/core:node", # TODO: get rid of this for 6.0
"@rxjs",
"@rxjs//operators",
],
)
ts_library(
name = "tasks",
srcs = glob(
include = ["tasks/**/*.ts"],
exclude = [
"tasks/**/*_spec.ts",
"tasks/**/*_benchmark.ts",
],
),
module_name = "@angular-devkit/schematics/tasks",
module_root = "tasks",
tsconfig = "//:tsconfig.json",
deps = [
":schematics",
"//packages/angular_devkit/core",
"//packages/angular_devkit/core:node",
"@rxjs",
"@rxjs//operators",
],
)
ts_library(
name = "tools",
srcs = glob(
include = ["tools/**/*.ts"],
exclude = [
"tools/**/*_spec.ts",
"tools/**/*_benchmark.ts",
],
),
module_name = "@angular-devkit/schematics/tools",
module_root = "tools",
deps = [
":schematics",
":tasks",
"//packages/angular_devkit/core",
"//packages/angular_devkit/core:node",
"@rxjs",
"@rxjs//operators",
],
)
ts_library(
name = "testing",
srcs = glob(
include = ["testing/**/*.ts"],
exclude = [],
),
module_name = "@angular-devkit/schematics/testing",
module_root = "testing",
deps = [
":schematics",
":tasks",
":tools",
"//packages/angular_devkit/core",
"@rxjs",
"@rxjs//operators",
],
)
ts_library(
name = "spec",
srcs = glob(
include = ["src/**/*_spec.ts"],
),
deps = [
":schematics",
"//packages/angular_devkit/core",
"@rxjs",
"@rxjs//operators",
# @typings: jasmine
],
)
ts_library(
name = "tools_spec",
srcs = glob(
include = ["tools/**/*_spec.ts"],
),
deps = [
":schematics",
":tools",
"//packages/angular_devkit/core",
"//packages/angular_devkit/core:node",
"@rxjs",
"@rxjs//operators",
# @typings: jasmine
],
)