blob: 60b4b997e0db40dcd36b157673af5ec3b89f5546 [file] [log] [blame]
# Copyright 2022 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
config("pthreadpool_config") {
include_dirs = [ "src/include" ]
}
source_set("pthreadpool") {
public = [ "src/include/pthreadpool.h" ]
sources = [
"src/src/memory.c",
"src/src/portable-api.c",
]
if (is_win) {
sources += [ "src/src/windows.c" ]
} else {
sources += [ "src/src/pthreads.c" ]
}
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
configs += [ "//build/config/sanitizers:cfi_icall_disable" ]
public_configs = [ ":pthreadpool_config" ]
deps = [ "//third_party/fxdiv" ]
}