forked from bazelbuild/rules_apple
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
27 lines (24 loc) · 658 Bytes
/
BUILD
File metadata and controls
27 lines (24 loc) · 658 Bytes
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
licenses(["notice"])
exports_files(["LICENSE"])
# See the note in __init__.py for why this is needed.
py_library(
name = "py_init_shim",
testonly = 1,
srcs = ["__init__.py"],
visibility = ["//:__subpackages__"],
)
# Consumed by bazel tests.
filegroup(
name = "for_bazel_tests",
testonly = 1,
srcs = [
"WORKSPACE",
"//apple:for_bazel_tests",
"//tools:for_bazel_tests",
"@build_bazel_apple_support//:for_bazel_tests",
"@build_bazel_rules_swift//:for_bazel_tests",
"@subpar//:subpar.bzl",
"@xctestrunner//:for_bazel_tests",
],
visibility = ["//:__subpackages__"],
)