blob: a46688bfd11f8ef49729aedd3468858fa4d8b97c [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("io-scheduler") {
static = true
sources = [
"queue.cc",
"scheduler.cc",
"stream.cc",
"worker.cc",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/zircon",
]
}
zx_test("io-scheduler-test") {
output_name = "iosched"
sources = [
"test/main.cc",
"test/stream.cc",
"test/unique-op.cc",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fzl",
"$zx/system/ulib/io-scheduler",
"$zx/system/ulib/zxtest",
]
}