load("//cuttlefish/bazel:rules.bzl", "cf_cc_binary") package( default_visibility = ["//:android_cuttlefish"], ) cf_cc_binary( name = "socket_vsock_proxy", srcs = [ "client.cpp", "client.h", "server.cpp", "server.h", "socket_vsock_proxy.cpp", ], deps = [ "//cuttlefish/common/libs/fs", "//cuttlefish/common/libs/utils:contains", "//cuttlefish/common/libs/utils:result", "//cuttlefish/common/libs/utils:socket2socket_proxy", "//cuttlefish/common/libs/utils:tee_logging", "//cuttlefish/host/commands/kernel_log_monitor:kernel_log_monitor_utils", "//cuttlefish/host/libs/command_util", "//cuttlefish/host/libs/config:cuttlefish_config", "//cuttlefish/host/libs/config:logging", "//libbase", "@gflags", ], )