blob: c8a35847ed216c14e88dcd54f0e652acbe52964a [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
library("dispatcher-pool") {
sdk = "source"
sdk_headers = [
"dispatcher-pool/dispatcher-channel.h",
"dispatcher-pool/dispatcher-event-source.h",
"dispatcher-pool/dispatcher-execution-domain.h",
"dispatcher-pool/dispatcher-interrupt.h",
"dispatcher-pool/dispatcher-thread-pool.h",
"dispatcher-pool/dispatcher-timer.h",
"dispatcher-pool/dispatcher-wakeup-event.h",
]
sources = [
"dispatcher-channel.cc",
"dispatcher-event-source.cc",
"dispatcher-execution-domain.cc",
"dispatcher-interrupt.cc",
"dispatcher-thread-pool.cc",
"dispatcher-timer.cc",
"dispatcher-wakeup-event.cc",
]
configs += [ "$zx/public/gn/config:visibility_hidden" ]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/zx",
]
}