blob: 682b5f3b8e40b9bb2ad618faa571ff2f66e46f57 [file] [log] [blame]
# Copyright 2020 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")
group("tests") {
testonly = true
deps = [ "test:synchronous-executor-test-package" ]
}
zx_library("synchronous-executor") {
sdk = "source"
sdk_headers = [ "lib/synchronous-executor/executor.h" ]
sources = [ "executor.cc" ]
deps = [
"//sdk/lib/fit-promise",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
configs += [ "//build/config/fuchsia:static_cpp_standard_library" ]
}