blob: 8ca7c9ed08814b2e3e421c88e84d12fd73bb0f7a [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.
import("//build/zircon/zx_library.gni")
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 = [
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/zx",
]
public_deps = [ "//zircon/system/ulib/async" ]
}
group("tests") {
testonly = true
deps = [ "test:tests" ]
}