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