xref: /aosp_15_r20/external/executorch/extension/kernel_util/test/targets.bzl (revision 523fa7a60841cd1ecfb9cc4201f1ca8b03ed023a)
1load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
2
3def define_common_targets():
4    """Defines targets that should be shared between fbcode and xplat.
5
6    The directory containing this targets.bzl file should also contain both
7    TARGETS and BUCK files that call this function.
8    """
9    runtime.cxx_test(
10        name = "make_boxed_from_unboxed_functor_test",
11        srcs = [
12            "make_boxed_from_unboxed_functor_test.cpp",
13        ],
14        deps = [
15            "//executorch/extension/kernel_util:kernel_util",
16            "//executorch/runtime/core/exec_aten/testing_util:tensor_util",
17        ],
18    )
19