load("//cuttlefish/bazel:rules.bzl", "cf_cc_binary") package( default_visibility = ["//:android_cuttlefish"], ) cf_cc_binary( name = "operator_proxy", srcs = ["main.cpp"], deps = [ "//cuttlefish/common/libs/fs", "//cuttlefish/common/libs/utils:socket2socket_proxy", "//cuttlefish/host/libs/config:logging", "//libbase", "@gflags", ], )