aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/cc/BUILD
blob: 5e6ca3c90a105ae7f814197ee1a07ce625aa2fe7 (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
26
27
28
29
30
31
32
licenses(["notice"])  # Apache 2.0

exports_files(["action_names.bzl"])

filegroup(
    name = "srcs",
    srcs = glob(["**"]),
    visibility = [
        "//devtools/blaze/integration:__pkg__",
        "//:__pkg__",
        "//tools:__pkg__",
    ],
)

filegroup(
    name = "action_names_test_files",
    testonly = True,
    srcs = [
        "BUILD",
        "action_names.bzl",
    ],
    visibility = ["//visibility:public"],
)

# bazel_osx_p4deps specifies the set of dependencies needed to run Bazel on OS X.
# Consumed by Google internal tests.
filegroup(
    name = "bazel_osx_p4deps",
    testonly = 1,
    srcs = glob(["**"]),
    visibility = ["//tools/osx:__pkg__"],
)