blob: 6e15929ffa4654e5b3a6936ef0a2bfe1f5b3c08d [file] [log] [blame]
Austin Schuhae856ca2023-11-18 14:04:00 -08001cc_library(
2 name = "cccl",
3 hdrs = glob(include = [
4 "thrust/thrust/**",
5 "libcudacxx/include/**",
6 "cub/cub/**",
7 ]),
8 features = ["cuda"],
9 includes = [
10 "cub",
11 "libcudacxx/include",
12 "thrust",
13 ],
14 target_compatible_with = [
15 "@//tools/platforms/gpu:nvidia",
16 "@platforms//os:linux",
17 ],
18 visibility = ["//visibility:public"],
19)