-
Notifications
You must be signed in to change notification settings - Fork 183
/
Copy pathBUILD
97 lines (80 loc) · 1.69 KB
/
BUILD
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
load("//:bzl_library.bzl", "bzl_library")
licenses(["notice"])
package(default_visibility = ["//visibility:public"])
bzl_library(
name = "analysis_test",
srcs = ["analysis_test.bzl"],
)
bzl_library(
name = "analysis_failure_test",
srcs = ["analysis_failure_test.bzl"],
deps = ["//lib:unittest"],
)
bzl_library(
name = "build_test",
srcs = ["build_test.bzl"],
deps = ["//lib:new_sets"],
)
bzl_library(
name = "copy_file",
srcs = ["copy_file.bzl"],
deps = ["//rules/private:copy_file_private"],
)
bzl_library(
name = "copy_directory",
srcs = ["copy_directory.bzl"],
deps = ["//rules/private:copy_directory_private"],
)
bzl_library(
name = "write_file",
srcs = ["write_file.bzl"],
deps = ["//rules/private:write_file_private"],
)
bzl_library(
name = "diff_test",
srcs = ["diff_test.bzl"],
deps = ["//lib:shell"],
)
bzl_library(
name = "expand_template",
srcs = ["expand_template.bzl"],
)
bzl_library(
name = "native_binary",
srcs = ["native_binary.bzl"],
)
bzl_library(
name = "run_binary",
srcs = ["run_binary.bzl"],
deps = ["//lib:dicts"],
)
bzl_library(
name = "common_settings",
srcs = ["common_settings.bzl"],
)
filegroup(
name = "test_deps",
testonly = True,
srcs = [
"BUILD",
] + glob(["*.bzl"]),
)
# The files needed for distribution
filegroup(
name = "distribution",
srcs = [
"BUILD",
] + glob(["*.bzl"]),
visibility = [
"//:__pkg__",
],
)
# export bzl files for the documentation
exports_files(
glob(["*.bzl"]),
visibility = ["//:__subpackages__"],
)
bzl_library(
name = "select_file",
srcs = ["select_file.bzl"],
)