aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/sycl/sycl/BUILD
blob: bc1d18b7b572f7c5cec1241949d2c3eff3d8b16b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Description:
# A minimal BUILD file to make template files in this folder available. Without this BUILD file,
# bazel returns errors when trying to access tpl files in this folder.

package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # Apache 2.0

filegroup(
    name = "all_files",
    srcs = glob(
        ["**/*"],
        exclude = [
            "**/METADATA",
            "**/OWNERS",
        ],
    ),
    visibility = ["//tensorflow:__subpackages__"],
)