aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/apple/BUILD
blob: f102fef3b19175c823a1e600e03bb407c5286e15 (plain)
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
package(default_visibility = ["//visibility:public"])

filegroup(
    name = "srcs",
    srcs = glob(["*.bzl"]) + [
        "BUILD",
        "//tools/build_defs/apple/test:srcs",
    ],
    visibility = ["//tools/build_defs:__pkg__"],
)

test_suite(
    name = "windows_tests",
    tags = [
        "-no_windows",
        "-slow",
    ],
    visibility = ["//visibility:private"],
)

test_suite(
    name = "all_windows_tests",
    tests = [":windows_tests"],
    visibility = ["//tools/build_defs:__pkg__"],
)