1set(TSAN_RTL_TEST_SOURCES
2  tsan_bench.cc
3  tsan_mop.cc
4  tsan_mutex.cc
5  tsan_posix.cc
6  tsan_string.cc
7  tsan_test.cc
8  tsan_thread.cc)
9
10if(UNIX AND NOT APPLE)
11  list(APPEND TSAN_RTL_TEST_SOURCES tsan_test_util_linux.cc)
12endif()
13
14set(TSAN_RTL_TEST_HEADERS
15  tsan_test_util.h)
16
17add_tsan_unittest(TsanRtlTest
18  SOURCES ${TSAN_RTL_TEST_SOURCES}
19  HEADERS ${TSAN_RTL_TEST_HEADERS})
20