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