blob: 32831980564fd49ebabcc9e595acfe582f8c7a89 [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",
"fdio",
"zircon",
]
public_deps = [
"//garnet/public/lib/fxl",
"//garnet/public/lib/fsl/handles",
"//zircon/system/ulib/async:loop",
"//zircon/system/ulib/zx",
]
}