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 10 runtime.cxx_test( 11 name = "thread_parallel_test", 12 srcs = [ 13 "thread_parallel_test.cpp", 14 ], 15 deps = [ 16 "//executorch/extension/parallel:thread_parallel", 17 "//executorch/runtime/platform:platform", 18 ], 19 ) 20