blob: 00564a2dd6bb9b65c0c6998ca868b63558c531df [file] [log] [blame]
cc_library(
name = "threads",
srcs = [
],
hdrs = [
"pthread.h",
"thunkers.h",
],
deps = [
"//common/libs/time",
],
visibility = [ "//visibility:public" ],
)
cc_test(
name = "threads_test",
srcs = [
"pthread_test.cpp",
],
linkopts = [ "-lpthread" ],
deps = [
":threads",
"//common/libs/time",
"//common/libs/glog:cuttlefish_logging",
],
)