blob: 0e7a2c4ae4295ce97a0dd5202b88bc21f54f91b1 [file] [log] [blame]
# Copyright 2016 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.
source_set("tasks") {
visibility = [ "//garnet/public/lib/fsl/*" ]
sources = [
"fd_waiter.cc",
"fd_waiter.h",
"incoming_task_queue.cc",
"incoming_task_queue.h",
"message_loop.cc",
"message_loop.h",
"message_loop_handler.cc",
"message_loop_handler.h",
]
libs = [
"async-default",
"zircon",
]
public_deps = [
"//garnet/public/lib/fxl",
"//garnet/public/lib/fsl/handles",
"//zircon/system/ulib/async:loop",
"//zircon/system/ulib/zx",
]
}