blob: 26c71ac36da9e2c1f2bf4e8c0dbdd7dfff35d1a1 [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("socket") {
visibility = [ "//src/lib/fsl/*" ]
sources = [
"blocking_drain.cc",
"blocking_drain.h",
"files.cc",
"files.h",
"socket_drainer.cc",
"socket_drainer.h",
"strings.cc",
"strings.h",
]
public_deps = [
"//sdk/lib/syslog/cpp",
"//src/lib/files",
"//src/lib/fxl:common",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}