blob: 9cd988cb091050434f495bcd9b04b548f74de4ba [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.
zx_library("closure-queue") {
# Note: The appearance of "sdk" does not mean this will or is intended to be
# in the sdk. It's just the way we export from zircon for use elsewhere.
sdk = "source"
sdk_headers = [ "lib/closure-queue/closure_queue.h" ]
sources = [
"closure_queue.cc",
]
deps = [
"$zx/system/ulib/async:async-cpp",
"$zx/system/ulib/zx",
]
public_deps = [
"$zx/system/ulib/async:async.headers",
]
}