1 # Android builds do not need to link in a separate pthread library.
2 LIB_COPTS = []
3
4 LIB_LINKOPTS = select({
5 ":android": [],
6 "//conditions:default": ["-lpthread"],
7 })
8
9 BIN_LINKOPTS = select({
10 ":android": [],
11 "//conditions:default": ["-lpthread"],
12 })
13