diff --git a/base/cvd/cuttlefish/host/commands/logcat_receiver/BUILD.bazel b/base/cvd/cuttlefish/host/commands/logcat_receiver/BUILD.bazel new file mode 100644 index 0000000000..9adf65de56 --- /dev/null +++ b/base/cvd/cuttlefish/host/commands/logcat_receiver/BUILD.bazel @@ -0,0 +1,18 @@ +cc_binary( + name = "logcat_receiver", + deps = [ + "//cuttlefish/common/libs/fs", + "//cuttlefish/host/libs/config", + "//libbase", + "@gflags", + ], + srcs = [ + "main.cpp", + ], + cxxopts = [ + "-std=c++17", + ], + visibility = [ + "//visibility:public" + ], +)