-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathBUILD
43 lines (38 loc) · 831 Bytes
/
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
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
load("//:defs.bzl", "command")
exports_files(
glob(["*.bzl"]),
visibility = ["//doc:__pkg__"],
)
command(
name = "root_command",
command = "//tests:echo_hello",
visibility = ["//tests:__pkg__"],
)
bzl_library(
name = "defs",
srcs = ["defs.bzl"],
visibility = ["//visibility:public"],
deps = [
":command",
":multirun",
],
)
bzl_library(
name = "multirun",
srcs = ["multirun.bzl"],
visibility = ["//visibility:public"],
deps = [
"//internal:constants",
"@bazel_skylib//lib:shell",
],
)
bzl_library(
name = "command",
srcs = ["command.bzl"],
visibility = ["//visibility:public"],
deps = [
"//internal:constants",
"@bazel_skylib//lib:shell",
],
)