Austin Schuh | ae856ca | 2023-11-18 14:04:00 -0800 | [diff] [blame] | 1 | cc_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 | ) |