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