Add support for compiling CUDA code on both amd64 and the orin

Change-Id: Ic7aca062c454fa1da3480667363e7250ddc2a8fe
Signed-off-by: Austin Schuh <austin.linux@gmail.com>
diff --git a/third_party/cccl/BUILD b/third_party/cccl/BUILD
new file mode 100644
index 0000000..9a3294f
--- /dev/null
+++ b/third_party/cccl/BUILD
@@ -0,0 +1 @@
+exports_files(["cccl.BUILD"])
diff --git a/third_party/cccl/cccl.BUILD b/third_party/cccl/cccl.BUILD
new file mode 100644
index 0000000..6e15929
--- /dev/null
+++ b/third_party/cccl/cccl.BUILD
@@ -0,0 +1,19 @@
+cc_library(
+    name = "cccl",
+    hdrs = glob(include = [
+        "thrust/thrust/**",
+        "libcudacxx/include/**",
+        "cub/cub/**",
+    ]),
+    features = ["cuda"],
+    includes = [
+        "cub",
+        "libcudacxx/include",
+        "thrust",
+    ],
+    target_compatible_with = [
+        "@//tools/platforms/gpu:nvidia",
+        "@platforms//os:linux",
+    ],
+    visibility = ["//visibility:public"],
+)