blob: 3573f7be912c63b24a65d2b0d1cf0a9fe856e01d [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.
import("//build/cpp/sdk_source_set.gni")
sdk_source_set("socket") {
category = "internal"
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(https://fxbug.dev/42136089): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}