-
Notifications
You must be signed in to change notification settings - Fork 417
/
BUILD.bazel
47 lines (41 loc) · 1.07 KB
/
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
39
40
41
42
43
44
45
46
47
load("@bazel_gazelle//:def.bzl", "gazelle")
load("//buildifier:def.bzl", "buildifier")
exports_files([
"LICENSE",
"launcher.js",
])
config_setting(
name = "windows",
values = {"cpu": "x64_windows"},
)
filegroup(
name = "warnings",
srcs = ["WARNINGS.md"],
visibility = ["//warn/docs:__pkg__"],
)
test_suite(
name = "tests",
tests = [
"//api_proto:api.gen.pb.go_checkshtest",
"//build:build_test",
"//build_proto:build.gen.pb.go_checkshtest",
"//buildifier:buildifier_integration_test",
"//deps_proto:deps.gen.pb.go_checkshtest",
"//edit:edit_test",
"//extra_actions_base_proto:extra_actions_base.gen.pb.go_checkshtest",
"//labels:labels_test",
"//lang:tables.gen.go_checkshtest",
"//tables:tables_test",
"//warn:warn_test",
"//warn/docs:docs_test",
"//wspace:wspace_test",
],
)
# gazelle:go_naming_convention import_alias
# gazelle:prefix github.com/bazelbuild/buildtools
gazelle(
name = "gazelle",
)
buildifier(
name = "buildifier",
)